Skip to content

Commit f4753cc

Browse files
authored
Merge pull request #56711 from nextcloud/fix/noid/user-status-busy
fix(user_status): adjust online status string
2 parents b279924 + 4dd34bd commit f4753cc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

apps/user_status/src/mixins/OnlineStatusMixin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ export default {
3737
return t('user_status', 'Online')
3838

3939
case 'away':
40-
case 'busy':
4140
return t('user_status', 'Away')
4241

42+
case 'busy':
43+
return t('user_status', 'Busy')
44+
4345
case 'dnd':
4446
return t('user_status', 'Do not disturb')
4547

0 commit comments

Comments
 (0)