After Store: Remove last statusnet vestiges.

This commit is contained in:
lain 2020-06-24 17:54:35 +02:00
parent 143da55c56
commit 504d48fc5a
1 changed files with 7 additions and 6 deletions

View File

@ -8,14 +8,15 @@ import backendInteractorService from '../services/backend_interactor_service/bac
import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js'
import { applyTheme } from '../services/style_setter/style_setter.js'
const getStatusnetConfig = async ({ store }) => {
const getInstanceConfig = async ({ store }) => {
try {
const res = await window.fetch('/api/statusnet/config.json')
const res = await window.fetch('/api/v1/instance')
if (res.ok) {
const data = await res.json()
const { textlimit, vapidPublicKey } = data.site
const textlimit = data.max_toot_chars
const vapidPublicKey = data.pleroma.vapid_public_key
store.dispatch('setInstanceOption', { name: 'textlimit', value: parseInt(textlimit) })
store.dispatch('setInstanceOption', { name: 'textlimit', value: textlimit })
if (vapidPublicKey) {
store.dispatch('setInstanceOption', { name: 'vapidPublicKey', value: vapidPublicKey })
@ -24,7 +25,7 @@ const getStatusnetConfig = async ({ store }) => {
throw (res)
}
} catch (error) {
console.error('Could not load statusnet config, potentially fatal')
console.error('Could not load instance config, potentially fatal')
console.error(error)
}
}
@ -319,7 +320,7 @@ const afterStoreSetup = async ({ store, i18n }) => {
getInstancePanel({ store }),
getStickers({ store }),
getNodeInfo({ store }),
getStatusnetConfig({ store })
getInstanceConfig({ store })
])
// Start fetching things that don't need to block the UI