From cf950efb84133ba7a91d4db369a2440c20d69e18 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Tue, 7 Jun 2016 19:50:55 +0300 Subject: [PATCH] Fixed open channel Close #1118 --- app/js/services.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/js/services.js b/app/js/services.js index 1ce161b9..168771dd 100755 --- a/app/js/services.js +++ b/app/js/services.js @@ -4265,7 +4265,8 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) if (matches[2] == 'start') { params.startParam = matches[3]; - } else { + } + else if (matches[2] == 'post') { params.messageID = AppMessagesManager.getFullMessageID(parseInt(matches[3]), -peerID); }