このコミットが含まれているのは:
n9k 2022-07-20 07:12:11 +00:00
コミット f36840a9a6
2個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -50,7 +50,7 @@
margin: 24pt 16pt;
}
}
@media (min-width: 400px) and (min-height: 128px;) {
@media (min-width: 400px) and (min-height: 128px) {
body {
background-color: #18181a;
}

ファイルの表示

@ -50,7 +50,7 @@ async def websocket_outbound(queue, user):
try:
ensure_allowedness(user)
except AllowednessException:
websocket.send_json({'type': 'kick'})
await websocket.send_json({'type': 'kick'})
await websocket.close(1001)
break
else: