ensure that function signatures are correct

This commit is contained in:
ansuz
2017-08-28 11:40:31 +02:00
parent 91f6e3e543
commit c66a0c55e0
4 changed files with 16 additions and 15 deletions

View File

@@ -79,9 +79,11 @@ define([
friends[pubKey] = data;
Realtime.whenRealtimeSyncs(common.getRealtime(), function () {
Realtime.whenRealtimeSyncs(common, common.getRealtime(), function () {
cb();
common.pinPads([data.channel]);
common.pinPads([data.channel], function (e) {
if (e) { console.error(e); }
});
});
common.changeDisplayName(proxy[common.displayNameKey]);
};