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 | 1657bff6517aa7ce493506a41fd03825bacdf3ee (patch) | |
tree | 358754cf615d214ab1f0929aef78dee00777f842 /content/provider.js | |
parent | Releasing progress-linux version 4.7-1~progress7.99u1. (diff) | |
download | eas4tbsync-1657bff6517aa7ce493506a41fd03825bacdf3ee.tar.xz eas4tbsync-1657bff6517aa7ce493506a41fd03825bacdf3ee.zip |
Merging upstream version 4.8.
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; } |