mirror of https://gitlab.com/litecord/litecord.git
fix script error that would happen randomly
This commit is contained in:
parent
34eda81e4f
commit
8a25c9767e
|
|
@ -193,6 +193,10 @@ async def get_harvest():
|
||||||
"""Dummy route"""
|
"""Dummy route"""
|
||||||
return '', 204
|
return '', 204
|
||||||
|
|
||||||
|
@bp.route('/@me/activities/statistics/applications', methods=['GET'])
|
||||||
|
async def get_stats_applications():
|
||||||
|
"""Dummy route for info on gameplay time and such"""
|
||||||
|
return jsonify([])
|
||||||
|
|
||||||
@bp.route('/@me/library', methods=['GET'])
|
@bp.route('/@me/library', methods=['GET'])
|
||||||
async def get_library():
|
async def get_library():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue