Mercurial Hosting > chat
comparison src/lib/Chat.luan @ 64:bc9f452ee168
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 05 Mar 2025 21:43:11 -0700 |
parents | afd5ab5b02a2 |
children | a47036fd0158 |
comparison
equal
deleted
inserted
replaced
63:afd5ab5b02a2 | 64:bc9f452ee168 |
---|---|
34 chat_key = chat.key or error() | 34 chat_key = chat.key or error() |
35 } | 35 } |
36 end | 36 end |
37 | 37 |
38 local function get_chat_key(user_ids) | 38 local function get_chat_key(user_ids) |
39 #user_ids > 1 or error() | 39 #user_ids > 1 or error "You can't chat with yourself" |
40 sort(user_ids) | 40 sort(user_ids) |
41 return concat(user_ids,"~") | 41 return concat(user_ids,"~") |
42 end | 42 end |
43 | 43 |
44 function Chat.new(chat) | 44 function Chat.new(chat) |