weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

commit 6f466cb60b002b2638a3b14075a4096604b12bab
parent fa77e528f228c0ae211a20e024626ddeb397821e
Author: Johan Lindskogen <johan.lindskogen@gmail.com>
Date:   Sun,  1 Apr 2018 18:09:35 +0200

Fix ts warning

Diffstat:
Msrc/lib/weechat/connection.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/weechat/connection.ts b/src/lib/weechat/connection.ts @@ -16,7 +16,7 @@ export default class WeechatConnection { this.websocket = null; } - connect() { + connect(): Promise<WeechatConnection> { return new Promise((resolve, reject) => { this.websocket = new WebSocket(this.host);