From b0112e8c2e2e8f7f14e597dfa2d3b1940a799f62 Mon Sep 17 00:00:00 2001 From: lilia Date: Fri, 16 Oct 2015 18:18:25 -0700 Subject: [PATCH] Remove unnecessary check in gruntfile There's only one reference to the server url nowadays. // FREEBIE --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ff91abec59..de7e536bcd 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -123,7 +123,7 @@ module.exports = function(grunt) { files: [{ expand: true, dest: 'dist/', src: ['<%= dist.src %>'] }], options: { process: function(content, srcpath) { - if (srcpath.match('libtextsecure') || srcpath.match('background.js')) { + if (srcpath.match('background.js')) { return content.replace( /textsecure-service-staging.whispersystems.org/g, 'textsecure-service-ca.whispersystems.org:4433');