fix script error that would happen randomly

This commit is contained in:
Bootsy 2018-09-26 21:48:51 +00:00
parent 34eda81e4f
commit 8a25c9767e
1 changed files with 4 additions and 0 deletions

View File

@ -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():