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

Unified Diff: chrome/content/ui/filters-backup.js

Issue 29338626: Issue 3835 - Update dependency on adblockpluscore to revision 2d4888611240 (Closed)
Patch Set: Fixed updateRequired replacement Created March 19, 2016, 6:57 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 | « chrome/content/ui/filters.xul ('k') | chrome/content/ui/filters-filteractions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/content/ui/filters-backup.js
===================================================================
--- a/chrome/content/ui/filters-backup.js
+++ b/chrome/content/ui/filters-backup.js
@@ -294,17 +294,17 @@ var Backup =
let minVersion = "2.0"
let list = [];
for (let i = 0; i < subscriptions.length; i++)
{
let subscription = subscriptions[i];
let typeAddition = "";
if (subscription.defaults)
typeAddition = "/" + subscription.defaults.join("/");
- list.push("! [" + subscription.title + "]" + typeAddition);
+ list.push("! [" + getSubscriptionTitle(subscription) + "]" + typeAddition);
for (let j = 0; j < subscription.filters.length; j++)
{
let filter = subscription.filters[j];
// Skip checksums
if (filter instanceof CommentFilter && this.CHECKSUM_REGEXP.test(filter.text))
continue;
// Skip group headers
if (filter instanceof CommentFilter && this.GROUPTITLE_REGEXP.test(filter.text))
« no previous file with comments | « chrome/content/ui/filters.xul ('k') | chrome/content/ui/filters-filteractions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld