diff --git a/msp_remoteadmin/tools.py b/msp_remoteadmin/tools.py index 0e864fd..e83d7e3 100644 --- a/msp_remoteadmin/tools.py +++ b/msp_remoteadmin/tools.py @@ -32,8 +32,8 @@ def create_session(doc, protocol): print(f"Token: {token}") # Get credentials from IT User Account print(f"Values from form: {doc}") - print(f"Type: {type(doc.link)}") - acc_doc = frappe.get_doc('IT User Account', doc.link) + print(f"Type: {type(doc.get('link'))}") + acc_doc = frappe.get_doc('IT User Account', doc.get('link')) print(f"Print doc values: {acc_doc}") username = acc_doc.username password = acc_doc.get_password('password')