Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dbz committed Sep 13, 2017
1 parent 64b20ad commit 4491c7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is useful if the website:

Install WebCache [here](https://chrome.google.com/webstore/detail/webcache/cmmlgikpahieigpcclckfmhnchdlfnjd)

_Version v4.0.1_
_Version v4.1.1_

# Feedback

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"name": "WebCache",
"short_name" : "WebCache",
"version": "4.1.0",
"version": "4.1.1",
"description": "Want to view a cached website? With WebCache it takes 1 click to view the Google Cache, Wayback Machine, Archive.is, or Coral CDN!",
"browser_action": {
"default_title": "WebCache"
Expand Down
2 changes: 1 addition & 1 deletion redirect.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ chrome.runtime.onInstalled.addListener(function(details) {
chrome.storage.sync.set(saveObject);
} else if(result["cacheOrder"].length < cacheURLs.length) {
var saveObject = {
"cacheOrder": result["cacheOrder"].concat($(sortableCaches)).not(result["cacheOrder"]).get())
"cacheOrder": result["cacheOrder"].concat($(sortableCaches)).not(result["cacheOrder"]).get()
};
chrome.storage.sync.set(saveObject);
}
Expand Down

0 comments on commit 4491c7e

Please sign in to comment.