mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2025-01-29 16:49:24 +01:00
Merge pull request #4091 from h3poteto/feat/read-privacy-sensitive
Read default value for sensitive and nsfw from API response
This commit is contained in:
commit
e9691209ba
@ -207,8 +207,14 @@ export default defineComponent({
|
||||
const c = generator(s.sns, s.baseURL, a.accessToken, userAgent.value)
|
||||
client.value = c
|
||||
|
||||
const res = await c.getInstanceCustomEmojis()
|
||||
const customEmojis = res.data
|
||||
const credentials = await c.verifyAccountCredentials()
|
||||
if (credentials.data.source) {
|
||||
visibility.value = credentials.data.source.privacy
|
||||
nsfw.value = credentials.data.source.sensitive
|
||||
}
|
||||
|
||||
const emojis = await c.getInstanceCustomEmojis()
|
||||
const customEmojis = emojis.data
|
||||
.map(emoji => {
|
||||
return {
|
||||
name: `:${emoji.shortcode}:`,
|
||||
|
Loading…
x
Reference in New Issue
Block a user