diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-17 17:00:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-17 17:00:23 +0000 |
commit | 7c3e1ef285a12ea7bd9995bfd4843e71689f4c9f (patch) | |
tree | 592ad95c1b248dfccf0bf7b7cc0c7dcbe3aa22e9 /content/provider.js | |
parent | Adding upstream version 4.7. (diff) | |
download | eas4tbsync-7c3e1ef285a12ea7bd9995bfd4843e71689f4c9f.tar.xz eas4tbsync-7c3e1ef285a12ea7bd9995bfd4843e71689f4c9f.zip |
Adding upstream version 4.8.upstream/4.8upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | content/provider.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/provider.js b/content/provider.js index de5af36..97f7a28 100644 --- a/content/provider.js +++ b/content/provider.js @@ -280,7 +280,7 @@ var Base = class { "synckey" : "", "target" : "", "targetColor" : "", - "targetName" : "", + "targetName" : "", "parentID" : "0", "serverID" : "", }; @@ -526,7 +526,8 @@ var TargetData_addressbook = class extends TbSync.addressbook.AdvancedTargetData if (directory && directory instanceof Components.interfaces.nsIAbDirectory && directory.dirPrefId == dirPrefId) { directory.setStringValue("tbSyncIcon", "eas" + (this.folderData.accountData.getAccountProperty("servertype") == "office365" ? "_365" : "")); - return directory; + directory.setStringValue("tbSyncRevision", "2"); + return directory; } return null; } |