Mikaleb / Thunvatar

Thunderbird add-on to show gravatars in mail folders
https://addons.thunderbird.net/fr/thunderbird/addon/thunvatar/
GNU General Public License v3.0
10 stars 3 forks source link

Use Services global variable if possible #7

Closed arai-a closed 12 months ago

arai-a commented 1 year ago

Services.jsm is planned to be removed in Firefox 117 cycle in https://bugzilla.mozilla.org/show_bug.cgi?id=1780695 . Services global variable is available in WebExtensions experiments API global from version 88 https://bugzilla.mozilla.org/show_bug.cgi?id=1698158 , and also available in all system globals from version 104 https://bugzilla.mozilla.org/show_bug.cgi?id=1667455 , and those code doesn't have to import Services.jsm for recent versions.

Mikaleb commented 12 months ago

Thanks a lot !