Correctly cache server translations
This commit is contained in:
parent
c0ffdd0958
commit
4bda2e47bb
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
import { map, share, switchMap, tap } from 'rxjs/operators'
|
||||
import { map, shareReplay, switchMap, tap } from 'rxjs/operators'
|
||||
import { HttpClient } from '@angular/common/http'
|
||||
import { Inject, Injectable, LOCALE_ID } from '@angular/core'
|
||||
import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage'
|
||||
|
@ -178,13 +178,13 @@ export class ServerService {
|
|||
|
||||
// Default locale, nothing to translate
|
||||
if (isDefaultLocale(completeLocale)) {
|
||||
this.localeObservable = of({}).pipe(share())
|
||||
this.localeObservable = of({}).pipe(shareReplay())
|
||||
return
|
||||
}
|
||||
|
||||
this.localeObservable = this.http
|
||||
.get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json')
|
||||
.pipe(share())
|
||||
.pipe(shareReplay())
|
||||
}
|
||||
|
||||
private saveConfigLocally (config: ServerConfig) {
|
||||
|
|
Loading…
Reference in a new issue