From 4643dbd7672f7508ef872ff38a245d3a9ab81d97 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Wed, 6 Apr 2022 12:14:13 -0400 Subject: [PATCH] page titles fixes + sockety url sockety --- .env.defaults | 2 +- static/app-strings.json | 1 + ui/constants/pageTitles.js | 1 + ui/constants/pages.js | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.env.defaults b/.env.defaults index b641b9879..0796722dc 100644 --- a/.env.defaults +++ b/.env.defaults @@ -14,7 +14,7 @@ LBRY_WEB_BUFFER_API=https://collector-service.api.lbry.tv/api/v1/events/video COMMENT_SERVER_API=https://comments.odysee.tv/api/v2 SEARCH_SERVER_API_ALT=https://recsys.odysee.tv/search SEARCH_SERVER_API=https://lighthouse.odysee.tv/search -SOCKETY_SERVER_API=wss://sockety.odysee.com/ws +SOCKETY_SERVER_API=wss://sockety.odysee.tv/ws RECSYS_ENDPOINT=https://recsys.odysee.tv/v1/lvv RECSYS_FYP_ENDPOINT=https://recsys.odysee.tv/v1/u # IMAGE_PROXY_URL=https://boost.vanwanet.com/index.php diff --git a/static/app-strings.json b/static/app-strings.json index 80e69d2e5..c414d2089 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -2233,5 +2233,6 @@ "This account has livestreaming disabled, please reach out to hello@odysee.com for assistance.": "This account has livestreaming disabled, please reach out to hello@odysee.com for assistance.", "Attach images by pasting or drag-and-drop.": "Attach images by pasting or drag-and-drop.", "There was a network error, but the publish may have been completed. Wait a few minutes, then check your Uploads or Wallet page to confirm.": "There was a network error, but the publish may have been completed. Wait a few minutes, then check your Uploads or Wallet page to confirm.", + "Sports": "Sports", "--end--": "--end--" } diff --git a/ui/constants/pageTitles.js b/ui/constants/pageTitles.js index b9fb712a1..030cb7094 100644 --- a/ui/constants/pageTitles.js +++ b/ui/constants/pageTitles.js @@ -16,6 +16,7 @@ export const PAGE_TITLE = { [PAGES.FINANCE]: 'Finance 2.0', [PAGES.GAMING]: 'Gaming', [PAGES.GENERAL]: 'Cheese', + [PAGES.SPORTS]: 'Sports', [PAGES.LAB]: 'Lab', [PAGES.MOVIES]: 'Movies', [PAGES.MUSIC]: 'Music', diff --git a/ui/constants/pages.js b/ui/constants/pages.js index 6aeeda591..bd42ad7bb 100644 --- a/ui/constants/pages.js +++ b/ui/constants/pages.js @@ -8,6 +8,7 @@ exports.BACKUP = 'backup'; exports.CHANNEL = 'channel'; exports.DISCOVER = 'discover'; exports.ARTISTS = 'artists'; +exports.SPORTS = 'sports'; exports.BIG_HITS = 'bighits'; exports.CREATIVE_ARTS = 'arts'; exports.MOVIES = 'movies';