Http api rename private method addCache

This commit is contained in:
ryoii 2020-02-22 18:02:13 +08:00
parent bebcf1aacb
commit 43e0c3b414

View File

@ -37,14 +37,15 @@ class MessageQueue : ConcurrentLinkedDeque<BotEvent>() {
} }
} }
// TODO: 等FriendMessage支持quote
if (event is GroupMessage) { if (event is GroupMessage) {
addCache(event) addQuoteCache(event)
} }
} }
return ret return ret
} }
private fun addCache(msg: GroupMessage) { private fun addQuoteCache(msg: GroupMessage) {
quoteCache[msg.message[MessageSource].messageUid.toLong()] = msg quoteCache[msg.message[MessageSource].messageUid.toLong()] = msg
if (quoteCache.size > quoteCacheSize) { if (quoteCache.size > quoteCacheSize) {
quoteCache.remove(quoteCache.firstKey()) quoteCache.remove(quoteCache.firstKey())