diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-25 13:21:03 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-25 13:21:03 +0200 |
commit | 302a6a144e12d411b41691edf7c14a82e4af6d16 (patch) | |
tree | 20a094123484960b9ab66847e748ed2f10c91031 /templates/layouts/default.html.ep | |
parent | 45c32ff5c779b5b9f262063aee8088a759ff5613 (diff) |
Remove apple-mobile-web-app-capable tag to work around Safari session issues1.6.2
iOS Safari does not send session cookies when following links to PWAs using
the apple-mobile-web-app-capable tag. This is not documented on
<https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html>,
though I can't say whether it is a bug in Safari or lacking documentation.
See <https://github.com/foosel/OctoPrint/issues/1792> for a more detailed
description of this type of issue.
Diffstat (limited to 'templates/layouts/default.html.ep')
-rw-r--r-- | templates/layouts/default.html.ep | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index ab2ce82..4c036ff 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -6,8 +6,6 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Checkin-Service und Verspätungslog für Bahnfahrten"> <meta name="theme-color" content="#673ab7"> - <meta name="apple-mobile-web-app-capable" content="yes"> - <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-title" content="Travelynx"> % my $av = 'v24'; # asset version <link rel="icon" type="image/png" href="/static/<%= $av %>/icons/icon-16x16.png" sizes="16x16"> |