mirror of https://gitlab.com/litecord/litecord.git
Merge branch 'patch-1' into 'master'
fix script error that would happen randomly See merge request luna/litecord!1
This commit is contained in:
commit
ea9bb52e4f
|
|
@ -193,6 +193,10 @@ async def get_harvest():
|
|||
"""Dummy route"""
|
||||
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'])
|
||||
async def get_library():
|
||||
|
|
|
|||
Loading…
Reference in New Issue