From cbfe445ed661e91ee5708357496fdee819c36dba Mon Sep 17 00:00:00 2001 From: jeena Date: Sun, 28 Apr 2013 00:27:22 +0200 Subject: [PATCH] fixed opening without is_private --- WebKit/scripts/helper/HostApp.js | 1 + 1 file changed, 1 insertion(+) diff --git a/WebKit/scripts/helper/HostApp.js b/WebKit/scripts/helper/HostApp.js index 1010e48..60cf9e5 100644 --- a/WebKit/scripts/helper/HostApp.js +++ b/WebKit/scripts/helper/HostApp.js @@ -82,6 +82,7 @@ define(function() { if (OS_TYPE == "mac") { controller.openNewMessageWindowInReplyTo_statusId_withString_isPrivate_(entity, status_id, string, is_private); } else { + is_private = is_private == true controller.openNewMessageWindowInReplyTostatusIdwithStringIsPrivate(entity, status_id, string, is_private); } }