diff options
author | Chocobozzz <me@florianbigard.com> | 2020-07-27 11:40:30 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-07-31 11:35:19 +0200 |
commit | 94148c9028829b5576a5dcbfba2c7fb9cf6443d3 (patch) | |
tree | 2774f272329111abd03e8441ff936da11fb1a3f3 /client/src/app/helpers | |
parent | 441e453ae53e491b09c9b09b00b041788176ce64 (diff) | |
download | PeerTube-94148c9028829b5576a5dcbfba2c7fb9cf6443d3.tar.gz PeerTube-94148c9028829b5576a5dcbfba2c7fb9cf6443d3.tar.zst PeerTube-94148c9028829b5576a5dcbfba2c7fb9cf6443d3.zip |
Add abuse messages management in my account
Diffstat (limited to 'client/src/app/helpers')
-rw-r--r-- | client/src/app/helpers/utils.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/helpers/utils.ts b/client/src/app/helpers/utils.ts index 9bf22f62f..8e9f72adb 100644 --- a/client/src/app/helpers/utils.ts +++ b/client/src/app/helpers/utils.ts | |||
@@ -36,7 +36,10 @@ function populateAsyncUserVideoChannels (authService: AuthService, channel: { id | |||
36 | } | 36 | } |
37 | 37 | ||
38 | function getAbsoluteAPIUrl () { | 38 | function getAbsoluteAPIUrl () { |
39 | let absoluteAPIUrl = environment.apiUrl | 39 | let absoluteAPIUrl = environment.hmr === true |
40 | ? 'http://localhost:9000' | ||
41 | : environment.apiUrl | ||
42 | |||
40 | if (!absoluteAPIUrl) { | 43 | if (!absoluteAPIUrl) { |
41 | // The API is on the same domain | 44 | // The API is on the same domain |
42 | absoluteAPIUrl = window.location.origin | 45 | absoluteAPIUrl = window.location.origin |