diff options
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/watch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube/watch.py b/youtube/watch.py index 9fd0333..09f146c 100644 --- a/youtube/watch.py +++ b/youtube/watch.py @@ -512,6 +512,8 @@ time_table = {'h': 3600, 'm': 60, 's': 1} @yt_app.route('/watch') @yt_app.route('/embed') @yt_app.route('/embed/<video_id>') +@yt_app.route('/shorts') +@yt_app.route('/shorts/<video_id>') def get_watch_page(video_id=None): video_id = request.args.get('v') or video_id if not video_id: |