Skip to content

Commit 396874b

Browse files
committed
get the serversettings from managed storage, not local storage
1 parent e7edd82 commit 396874b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ onload = function() {
5656
};
5757

5858
function getServerSettings(callback) {
59-
storage.get('serverSettings', function(results) {
59+
chrome.storage.managed.get('serverSettings', function(results) {
6060
if (chrome.runtime.lastError) {
6161
console.log('error, returning empty. Error Message: ' + chrome.runtime.lastError.message);
6262
return;

0 commit comments

Comments
 (0)