summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy BĂ­cha <[email protected]>2025-02-03 09:22:43 -0500
committergit-ubuntu importer <[email protected]>2025-02-03 22:30:22 +0000
commitf96eb02136184ccab00b6bade4d1fc291325de7a (patch)
tree3e02411517a935240648d1076b5547c87bb81ab5 /src
parent8df81df0e6d983ceb9a134caaffb5b39942f984e (diff)
parentb44aa051cff535c5ccb904d2f780ab78fd7892fb (diff)
3.53.1-1 (patches applied)applied/3.53.1-1
Imported using git-ubuntu import.
Diffstat (limited to 'src')
-rw-r--r--src/goabackend/goamsgraphprovider.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/goabackend/goamsgraphprovider.c b/src/goabackend/goamsgraphprovider.c
index b607c85a..6eebb7eb 100644
--- a/src/goabackend/goamsgraphprovider.c
+++ b/src/goabackend/goamsgraphprovider.c
@@ -283,7 +283,7 @@ build_object (GoaProvider *provider,
GKeyFile *goa_conf;
GoaMail *mail = NULL;
const gchar *provider_type;
- const gchar *identity = NULL;
+ const gchar *presentation_identity = NULL;
gboolean files_enabled = FALSE;
gboolean calendar_enabled;
gboolean contacts_enabled;
@@ -303,12 +303,12 @@ build_object (GoaProvider *provider,
provider_type = goa_provider_get_provider_type (provider);
goa_conf = goa_util_open_goa_conf ();
account = goa_object_get_account (GOA_OBJECT (object));
- identity = goa_account_get_identity (account);
+ presentation_identity = goa_account_get_presentation_identity (account);
/* Files */
files_enabled = goa_util_provider_feature_is_enabled (goa_conf, provider_type, GOA_PROVIDER_FEATURE_FILES) &&
g_key_file_get_boolean (key_file, group, "FilesEnabled", NULL);
- uri_onedrive = g_strconcat ("onedrive://", identity, "/", NULL);
+ uri_onedrive = g_strconcat ("onedrive://", presentation_identity, "/", NULL);
goa_object_skeleton_attach_files (object, uri_onedrive, files_enabled, FALSE);
g_free (uri_onedrive);