Fix liquid.network and bisq.markets page titles in SEO services

This commit is contained in:
wiz 2021-08-05 22:45:03 +09:00
parent 0bb9247609
commit 1aa54faa35
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -27,6 +27,10 @@ export class SeoService {
} }
getTitle(): string { getTitle(): string {
if (this.network === 'liquid')
return 'mempool - Liquid Network';
if (this.network === 'bisq')
return 'mempool - Bisq Markets';
return 'mempool - ' + (this.network ? this.ucfirst(this.network) : 'Bitcoin') + ' Explorer'; return 'mempool - ' + (this.network ? this.ucfirst(this.network) : 'Bitcoin') + ' Explorer';
} }