fix tag comparison

This commit is contained in:
jusax23 2023-03-30 14:19:09 +02:00
parent ea501d3861
commit d5a00164bb
Signed by: jusax23
GPG key ID: 499E2AA870C1CD41

View file

@ -57,5 +57,5 @@ export class outbagServer {
}; };
export const checkSelfTag = (tag: string) => { export const checkSelfTag = (tag: string) => {
return tag == selfTag.host || tag == selfTag.host + ":" + selfTag.port; return tag == selfTag.tag || tag == selfTag.host + ":" + selfTag.port;
} }