Merge lp:~vthompson/ubuntu-rssreader-app/fix-1357639 into lp:~ubuntu-shorts-dev/ubuntu-rssreader-app/trunk

Proposed by Victor Thompson
Status: Merged
Approved by: Joey Chan
Approved revision: 291
Merged at revision: 291
Proposed branch: lp:~vthompson/ubuntu-rssreader-app/fix-1357639
Merge into: lp:~ubuntu-shorts-dev/ubuntu-rssreader-app/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
imgSeparator.js (+1/-1)
To merge this branch: bzr merge lp:~vthompson/ubuntu-rssreader-app/fix-1357639
Reviewer Review Type Date Requested Status
Joey Chan Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+231059@code.launchpad.net

Commit message

Fix unterminated string literal

Description of the change

Fix unterminated string literal

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Joey Chan (qqworini) wrote :

lol

thx for fixing my stupid mistake

review: Approve
Revision history for this message
Roman Shchekin (mrqtros) wrote :

Funny mistake)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'imgSeparator.js'
--- imgSeparator.js 2014-08-07 14:10:55 +0000
+++ imgSeparator.js 2014-08-16 04:46:45 +0000
@@ -11,7 +11,7 @@
11 for (var i=0; i<image_array.length; i++)11 for (var i=0; i<image_array.length; i++)
12 {12 {
13 try {13 try {
14 image_array[i] = image_array[i].split('src=')[1].split(/"|'/)[1]14 image_array[i] = image_array[i].split('src=')[1].split(/"|"/)[1]
15 if (image_array[i].indexOf("//") === 0)15 if (image_array[i].indexOf("//") === 0)
16 image_array[i] = "http:" + image_array[i]16 image_array[i] = "http:" + image_array[i]
17 }17 }

Subscribers

People subscribed via source and target branches