add missing sframe method

This commit is contained in:
ansuz
2017-10-23 12:33:50 +02:00
parent c1d05a00ba
commit 288e141c1f
4 changed files with 16 additions and 2 deletions

View File

@@ -318,10 +318,10 @@ define([
};
var removeFriend = function (curvePublic) {
messenger.removeFriend(curvePublic, function (e, removed) {
messenger.removeFriend(curvePublic, function (e /*, removed */) {
if (e) { return void console.error(e); }
find.inList(curvePublic).remove();
console.log(removed);
//console.log(removed);
});
};