fix(pwa): add scope to webmanifests to allow installing an app per podcast

This commit is contained in:
Yassine Doghri 2022-01-23 19:07:57 +00:00
parent 418a70b2a6
commit 74c683eb44
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ class WebmanifestController extends Controller
'description' => $podcast->description,
'lang' => $podcast->language_code,
'start_url' => $podcast->link,
'scope' => '/@' . $podcast->handle,
'display' => 'standalone',
'orientation' => 'portrait',
'theme_color' => self::THEME_COLORS[service('settings')->get('App.theme')]['theme'],