mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-04-03 16:10:35 +08:00
防止更新版本后浏览器加载缓存
This commit is contained in:
parent
7d610ecfdc
commit
0cf49ee042
4
main.py
4
main.py
@ -71,7 +71,9 @@ def run_server(host, port, debug):
|
|||||||
logger.warning('Address is used %s:%d', host, port)
|
logger.warning('Address is used %s:%d', host, port)
|
||||||
return
|
return
|
||||||
finally:
|
finally:
|
||||||
url = 'http://localhost' if port == 80 else f'http://localhost:{port}'
|
url = 'http://localhost/' if port == 80 else f'http://localhost:{port}/'
|
||||||
|
# 防止更新版本后浏览器加载缓存
|
||||||
|
url += '?_v=' + update.VERSION
|
||||||
webbrowser.open(url)
|
webbrowser.open(url)
|
||||||
logger.info('Server started: %s:%d', host, port)
|
logger.info('Server started: %s:%d', host, port)
|
||||||
tornado.ioloop.IOLoop.current().start()
|
tornado.ioloop.IOLoop.current().start()
|
||||||
|
Loading…
Reference in New Issue
Block a user