Fix catch ytapi.ChannelNotFound and return json 404.

master
voussoir 2020-09-04 10:48:08 -07:00
parent 4af4985ac5
commit 26704c238e
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ def post_add_channel():
# It seems they have given us a username instead.
try:
channel_id = common.ycdldb.youtube.get_user_id(username=channel_id)
except IndexError:
flask.abort(404)
except ycdl.ytapi.ChannelNotFound:
return jsonify.make_json_response({}, status=404)
channel = common.ycdldb.add_channel(channel_id, get_videos=True)
return jsonify.make_json_response(ycdl.jsonify.channel(channel))