fix: return local server if no my_server key exists

This commit is contained in:
Alexis Tyler
2021-06-01 13:47:29 +09:30
parent 64e2a51ffe
commit ef7861691c
2 changed files with 52 additions and 49 deletions
+2 -2
View File
@@ -18,10 +18,10 @@ export interface CachedServer {
apikey: string;
name: string;
status: Status;
wanip: IpAddress;
wanip: IpAddress | null;
lanip: IpAddress;
localurl: URL;
remoteurl: string;
remoteurl: string | null;
}
export interface CachedServers {