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

Unified Diff: messageResponder.js

Issue 29339395: Noissue - Make the options page respond to subscription title and homepage changes (Closed)
Patch Set: Created April 5, 2016, 7:05 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
Index: messageResponder.js
===================================================================
--- a/messageResponder.js
+++ b/messageResponder.js
@@ -60,7 +60,11 @@
{
var result = {};
for (var i = 0; i < keys.length; i++)
- result[keys[i]] = obj[keys[i]];
+ {
+ var key = keys[i];
Sebastian Noack 2016/04/05 19:09:54 As per the comment in background.js we don't set t
+ if (key in obj)
+ result[key] = obj[key];
+ }
return result;
}

Powered by Google App Engine
This is Rietveld