Merge branch 'develop' into csaurus/pleroma-fe-fix-chrome-auto-loading
This commit is contained in:
commit
3ffb17c0ae
3 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ const chatPanel = {
|
|||
return {
|
||||
currentMessage: '',
|
||||
channel: null,
|
||||
collapsed: false
|
||||
collapsed: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
|
@ -45,7 +45,7 @@ export const prepareStatus = (status) => {
|
|||
if (status.nsfw === undefined) {
|
||||
status.nsfw = isNsfw(status)
|
||||
if (status.retweeted_status) {
|
||||
status.retweeted_status.nsfw = status.nsfw
|
||||
status.nsfw = status.retweeted_status.nsfw
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -136,7 +136,7 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us
|
|||
|
||||
if (result.new) {
|
||||
if (statusType(status) === 'retweet' && status.retweeted_status.user.id === user.id) {
|
||||
addNotification({ type: 'repeat', status: status.retweeted_status, action: status })
|
||||
addNotification({ type: 'repeat', status: status, action: status })
|
||||
}
|
||||
|
||||
// We are mentioned in a post
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue