Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/uninstall.js

Issue 29777640: Issue 6655 - Shortened dataCorrupted parameter in query string of uninstall pag (Closed)
Patch Set: Created May 10, 2018, 12:42 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/uninstall.js
===================================================================
--- a/lib/uninstall.js
+++ b/lib/uninstall.js
@@ -55,7 +55,7 @@
}
search.push("notificationDownloadCount=" + encodeURIComponent(downlCount));
- search.push("dataCorrupted=" + (isDataCorrupted() ? "1" : "0"));
+ search.push("corrupted=" + (isDataCorrupted() ? "1" : "0"));
browser.runtime.setUninstallURL(Utils.getDocLink("uninstalled") + "&" +
search.join("&"));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld