Fixed default servers object value

This commit is contained in:
Alejandro Celaya 2018-08-04 08:29:40 +02:00
parent 5517fcdde5
commit 7f9744cef2

View file

@ -9,7 +9,7 @@ export class ServersService {
} }
listServers = () => { listServers = () => {
return this.storage.get(SERVERS_STORAGE_KEY) || []; return this.storage.get(SERVERS_STORAGE_KEY) || {};
}; };
findServerById = serverId => { findServerById = serverId => {