Commit a2ba3ccd authored by JC Brand's avatar JC Brand

Fixed chat state value, should be `chat` not `chatty`.

parent c6d37b57
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
- Update the 'rooms' API to allow user to pass in room attributes. [jcbrand] - Update the 'rooms' API to allow user to pass in room attributes. [jcbrand]
- Add new configuration setting [message_storage](https://conversejs.org/docs/html/configuration.html#message_storage) [jcbrand] - Add new configuration setting [message_storage](https://conversejs.org/docs/html/configuration.html#message_storage) [jcbrand]
- Hardcode the storage for roster contacts and chatroom occupants to `sessionStorage`. [jcbrand] - Hardcode the storage for roster contacts and chatroom occupants to `sessionStorage`. [jcbrand]
- Fixed wrong chat state value, should be `chat`, not `chatty`.
See [RFC 3921](https://xmpp.org/rfcs/rfc3921.html#rfc.section.2.1.2.2). [jcbrand]
## 1.0.6 (2016-08-12) ## 1.0.6 (2016-08-12)
- #632 Offline and Logout states do not properly update once users start - #632 Offline and Logout states do not properly update once users start
......
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
label_state: __('State'), label_state: __('State'),
label_any: __('Any'), label_any: __('Any'),
label_online: __('Online'), label_online: __('Online'),
label_chatty: __('Chatty'), label_chatty: __('Chat'),
label_busy: __('Busy'), label_busy: __('Busy'),
label_away: __('Away'), label_away: __('Away'),
label_xa: __('Extended Away'), label_xa: __('Extended Away'),
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
<option value="">{{label_any}}</option> <option value="">{{label_any}}</option>
<option {[ if (chat_state === 'online') { ]} selected="selected" {[ } ]} <option {[ if (chat_state === 'online') { ]} selected="selected" {[ } ]}
value="online">{{label_online}}</option> value="online">{{label_online}}</option>
<option {[ if (chat_state === 'chatty') { ]} selected="selected" {[ } ]} <option {[ if (chat_state === 'chat') { ]} selected="selected" {[ } ]}
value="chatty">{{label_chatty}}</option> value="chat">{{label_chatty}}</option>
<option {[ if (chat_state === 'dnd') { ]} selected="selected" {[ } ]} <option {[ if (chat_state === 'dnd') { ]} selected="selected" {[ } ]}
value="dnd">{{label_busy}}</option> value="dnd">{{label_busy}}</option>
<option {[ if (chat_state === 'away') { ]} selected="selected" {[ } ]} <option {[ if (chat_state === 'away') { ]} selected="selected" {[ } ]}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment