| Index: lib/uninstall.js |
| diff --git a/lib/uninstall.js b/lib/uninstall.js |
| index 3872e1cde76860e697cb24fb44005e182ddbfeef..18f6b463d8285d6473d992174750e1e691d3e5ad 100644 |
| --- a/lib/uninstall.js |
| +++ b/lib/uninstall.js |
| @@ -30,6 +30,12 @@ function setUninstallURL() |
| search.push(key + "=" + encodeURIComponent(info[key])); |
| let downlCount = Prefs.notificationdata.downloadCount || 0; |
| + |
| + // FIXME - Once the changes for issue #3650 land and are included we should |
| + // remove this check. (The number will be already truncated for us.) |
| + if (downlCount > 4) |
| + downlCount = "4+"; |
| + |
| search.push("notificationDownloadCount=" + encodeURIComponent(downlCount)); |
| chrome.runtime.setUninstallURL(Utils.getDocLink("uninstalled") + "&" + |