From 0b05753fec68b617a3134270b16e91fcd6f9c00d Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Wed, 13 Nov 2019 13:10:06 -0800 Subject: [PATCH] use renamed getUsers --- js/modules/loki_file_server_api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/modules/loki_file_server_api.js b/js/modules/loki_file_server_api.js index 9cb647455..f381509e3 100644 --- a/js/modules/loki_file_server_api.js +++ b/js/modules/loki_file_server_api.js @@ -54,7 +54,7 @@ class LokiFileServerAPI { } async getDeviceMappingForUsers(pubKeys) { - const users = await this._server.getUsersAnnotations(pubKeys); + const users = await this._server.getUsers(pubKeys); return users; }