line 113 in main.py
Closed this issue · 2 comments
crazypeace commented
send_cache_key = f'_LAST_{l_id}_{message.id}_send'
是否应该为
send_cache_key = f'_LAST_{receiver}_{message.id}_send'
或者是
send_cache_key = f'_LAST_{receiver}_{l_id}_{message.id}_send'
因为如果两个订阅者的同样第10个list匹配规则 写 的一样的,那是不是只有一个订阅者会收到消息?另一个会被排重了 收不到?
Hootrix commented
这个l_id
是订阅id,和用户id绑定。属于唯一的
Hootrix commented
两个订阅者的同样第10个list匹配规则
规则相同l_id不同
https://github.com/Hootrix/keyword_alert_bot/blob/master/main.py#L93