Skip to content

Commit d1f5d48

Browse files
committed
fix blacklist show, add emoji in index. test for webhook!
1 parent dcf8a2e commit d1f5d48

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

web/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ <h2>本站数据库<b><a style="text-decoration: none;color: skyblue" href="http
109109
<input type="submit" value="搜索">
110110
</form>
111111
<br>
112-
<h2>大家都在看……</h2>
112+
<h2>大家都在看🤔……</h2>
113113
<div class="tab">
114114

115115
</div>
@@ -119,7 +119,7 @@ <h2>大家都在看……</h2>
119119
</div>
120120

121121

122-
<h2>相关资源</h2>
122+
<h2>相关资源⬇️</h2>
123123
<h3>
124124
联系我 <a style="text-decoration: none;color: green" href="https://t.me/BennyThink">Benny 小可爱</a>
125125
YYeTs 机器人<a style="text-decoration: none;color: green" href="https://t.me/yyets_bot">Telegram Bot</a>

web/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,7 @@ def get_black_list(self):
324324
for key in keys:
325325
count = r.get(key)
326326
ttl = r.ttl(key)
327-
result["key"] = dict(count=count, ttl=ttl)
328-
327+
result[key] = dict(count=count, ttl=ttl)
329328
return result
330329

331330
@gen.coroutine

0 commit comments

Comments
 (0)