Use invite link generated on the server to stay in sync

This commit is contained in:
Johannes Zellner
2020-02-05 15:53:19 +01:00
parent 39faf2e55c
commit 9dbdad324a
2 changed files with 3 additions and 3 deletions

View File

@@ -1183,7 +1183,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
if (error) return callback(error);
if (status !== 200) return callback(new ClientError(status, data));
callback(null, data.resetToken);
callback(null, data);
});
};