Skip to content

Instantly share code, notes, and snippets.

@imsickofmaps
Created March 28, 2014 09:56
Show Gist options
  • Save imsickofmaps/9829194 to your computer and use it in GitHub Desktop.
Save imsickofmaps/9829194 to your computer and use it in GitHub Desktop.
diff --git a/go-js/lib/doagricussd.js b/go-js/lib/doagricussd.js
index 3d7fcce..a6d4bdd 100644
--- a/go-js/lib/doagricussd.js
+++ b/go-js/lib/doagricussd.js
@@ -258,8 +258,8 @@ function DoAgricUSSD() {
p.add_callback(function (result) {
return self.send_sms(im, _.gettext(
"Thank you for adding your voice and supporting smallholder " +
- "farmers across Africa. Download our free ringtone here: " +
- im.config.download_ringback));
+ "farmers across Africa. Download our free ringtone here: ") +
+ im.config.download_ringback);
});
return p;
}
@@ -284,8 +284,8 @@ function DoAgricUSSD() {
p.add_callback(function (result) {
return self.send_sms(im, _.gettext(
"Thank you for adding your voice and supporting smallholder " +
- "farmers across Africa. Download our song for free track here: " +
- im.config.download_mp3));
+ "farmers across Africa. Download our song for free track here: ") +
+ im.config.download_mp3);
});
return p;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment