mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 12:51:42 +03:00
Fixed logout issue
This commit is contained in:
parent
eca4dd2ebf
commit
7c376ae29d
@ -187,7 +187,10 @@ export const updateUserData = userData =>
|
|||||||
export const removeUserData = username =>
|
export const removeUserData = username =>
|
||||||
new Promise((resolve, reject) => {
|
new Promise((resolve, reject) => {
|
||||||
try {
|
try {
|
||||||
const account = realm.objects(USER_SCHEMA).filtered('username = $0', username);
|
const account = Object.assign(
|
||||||
|
[],
|
||||||
|
realm.objects(USER_SCHEMA).filtered('username = $0', username),
|
||||||
|
);
|
||||||
if (Array.from(account).length > 0) {
|
if (Array.from(account).length > 0) {
|
||||||
realm.write(() => {
|
realm.write(() => {
|
||||||
realm.delete(account);
|
realm.delete(account);
|
||||||
|
Loading…
Reference in New Issue
Block a user