From c7d6c61de758609763d6480a3a71cbd7fa4b088a Mon Sep 17 00:00:00 2001 From: nklhrstv Date: Thu, 19 Mar 2020 10:02:07 +0200 Subject: [PATCH] streamTransportUrl added to player url --- src/common/routesRegexp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/routesRegexp.js b/src/common/routesRegexp.js index 569f926e5..6ec7a14f2 100644 --- a/src/common/routesRegexp.js +++ b/src/common/routesRegexp.js @@ -32,8 +32,8 @@ const routesRegexp = { urlParamsNames: [] }, player: { - regexp: /^\/player\/([^/]*)(?:\/([^/]*)\/([^/]*)\/([^/]*)\/([^/]*))?$/, - urlParamsNames: ['stream', 'transportUrl', 'type', 'id', 'videoId'] + regexp: /^\/player\/([^/]*)(?:\/([^/]*)\/([^/]*)\/([^/]*)\/([^/]*)\/([^/]*))?$/, + urlParamsNames: ['stream', 'streamTransportUrl', 'metaTransportUrl', 'type', 'id', 'videoId'] } };