Don't prompt for giphy api key by default

This commit is contained in:
Tulir Asokan
2024-06-05 13:02:34 +03:00
parent 47f17fde45
commit dbc3a9fbb8
3 changed files with 4 additions and 15 deletions

View File

@@ -166,7 +166,9 @@ class App extends Component {
}
const indexData = await indexRes.json()
HOMESERVER_URL = indexData.homeserver_url || HOMESERVER_URL
setGiphyAPIKey(indexData.giphy_api_key, indexData.giphy_mxc_prefix)
if (indexData.giphy_api_key !== undefined) {
setGiphyAPIKey(indexData.giphy_api_key, indexData.giphy_mxc_prefix)
}
// TODO only load pack metadata when scrolled into view?
for (const packFile of indexData.packs) {
let packRes