mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Send a message of kind "kicked" instead of "error".
This commit is contained in:
parent
a5c97fd849
commit
3b98e123e0
3 changed files with 8 additions and 4 deletions
|
@ -292,8 +292,9 @@ chat history, and is not expected to contain user-visible content.
|
|||
}
|
||||
```
|
||||
|
||||
Currently defined kinds include `error`, `warning`, `info`, `clearchat`
|
||||
(not to be confused with the `clearchat` group action), and `mute`.
|
||||
Currently defined kinds include `error`, `warning`, `info`, `kicked`,
|
||||
`clearchat` (not to be confused with the `clearchat` group action), and
|
||||
`mute`.
|
||||
|
||||
A user action requests that the server act upon a user.
|
||||
|
||||
|
|
|
@ -1815,7 +1815,7 @@ func errorMessage(id string, err error) *clientMessage {
|
|||
}
|
||||
return &clientMessage{
|
||||
Type: "usermessage",
|
||||
Kind: "error",
|
||||
Kind: "kicked",
|
||||
Id: e.Id,
|
||||
Username: e.Username,
|
||||
Dest: id,
|
||||
|
|
|
@ -2198,6 +2198,7 @@ async function gotJoined(kind, group, perms, status, message) {
|
|||
*/
|
||||
function gotUserMessage(id, dest, username, time, privileged, kind, message) {
|
||||
switch(kind) {
|
||||
case 'kicked':
|
||||
case 'error':
|
||||
case 'warning':
|
||||
case 'info':
|
||||
|
@ -2934,7 +2935,6 @@ document.getElementById('resizer').addEventListener('mousedown', chatResizer, fa
|
|||
function displayError(message, level) {
|
||||
if(!level)
|
||||
level = "error";
|
||||
|
||||
var background = 'linear-gradient(to right, #e20a0a, #df2d2d)';
|
||||
var position = 'center';
|
||||
var gravity = 'top';
|
||||
|
@ -2948,6 +2948,9 @@ function displayError(message, level) {
|
|||
case "warning":
|
||||
background = "linear-gradient(to right, #bdc511, #c2cf01)";
|
||||
break;
|
||||
case "kicked":
|
||||
level = "error";
|
||||
break;
|
||||
}
|
||||
|
||||
/** @ts-ignore */
|
||||
|
|
Loading…
Reference in a new issue