summaryrefslogtreecommitdiffstats
path: root/browser/src/core/Socket.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/src/core/Socket.js')
-rw-r--r--browser/src/core/Socket.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/browser/src/core/Socket.js b/browser/src/core/Socket.js
index c99a4261bb..9ca6a978e9 100644
--- a/browser/src/core/Socket.js
+++ b/browser/src/core/Socket.js
@@ -3,7 +3,7 @@
* L.Socket contains methods for the communication with the server
*/
-/* global app _ vex $ errorMessages Uint8Array brandProductName brandProductFAQURL */
+/* global app _ vex $ errorMessages Uint8Array brandProductName */
app.definitions.Socket = L.Class.extend({
ProtocolVersionNumber: '0.1',
@@ -1085,12 +1085,10 @@ app.definitions.Socket = L.Class.extend({
textMsg = textMsg.replace(/{connections}/g, command.params[1]);
textMsg = textMsg.replace(/{productname}/g, (typeof brandProductName !== 'undefined' ?
brandProductName : 'Collabora Online Development Edition'));
- var brandFAQURL = (typeof brandProductFAQURL !== 'undefined') ?
- brandProductFAQURL : 'https://collaboraonline.github.io/post/faq/';
this._map.fire('infobar',
{
msg: textMsg,
- action: brandFAQURL,
+ action: L.Util.getProduct(),
actionLabel: errorMessages.infoandsupport
});
}