fix loading of user statuses #7

Merged
floatingghost merged 1 commits from user-status-loading into develop 2022-08-09 01:34:44 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -182,6 +182,7 @@ export default {
},
methods: {
capitalizeFirstLetter(str) {
if (!str) return ''
return str.charAt(0).toUpperCase() + str.slice(1)
},
changeStatus(statusId, isSensitive, visibility) {

View File

@ -39,7 +39,7 @@ const userProfile = {
commit('SET_STATUSES_LOADING', true)
fetchUserStatuses(userId, getters.authHost, godmode, getters.token)
.then(statuses => dispatch('SetStatuses', statuses.data))
.then(statuses => dispatch('SetStatuses', statuses.data.activities))
commit('SET_STATUSES_LOADING', false)
},