Skip to content

Commit

Permalink
Fix server path storage
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiRigal committed Sep 11, 2022
1 parent 37d4b3c commit 73f6521
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ let serverPort, serverIp, serverProtocol, serverPath, origin;


function pullStoredData(callback) {
chrome.storage.sync.get(['serverIp', 'serverPort', 'serverProtocol'], function(data) {
chrome.storage.sync.get(['serverIp', 'serverPort', 'serverPath', 'serverProtocol'], function(data) {
serverIp = data.serverIp || '172.0.0.1';
serverPort = data.serverPort || 8001;
serverPath = data.serverPath || '/';
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Yape",
"version": "1.1.1",
"version": "1.1.2",
"description": "Extension for PyLoad to easily monitor and add downloads",
"permissions": ["activeTab", "storage", "contextMenus", "scripting"],
"host_permissions": ["http://*/", "https://*/"],
Expand Down

0 comments on commit 73f6521

Please sign in to comment.