From c2d16a0397bbf7c1c42f0dfebea58b9e910ff825 Mon Sep 17 00:00:00 2001 From: Martin Zikmund Date: Mon, 26 Aug 2024 15:17:24 +0200 Subject: [PATCH] fix: Adjust deprecated meta tag --- src/Uno.Wasm.Bootstrap/ShellTask.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Uno.Wasm.Bootstrap/ShellTask.cs b/src/Uno.Wasm.Bootstrap/ShellTask.cs index 322e96f30..6d1b29cfc 100644 --- a/src/Uno.Wasm.Bootstrap/ShellTask.cs +++ b/src/Uno.Wasm.Bootstrap/ShellTask.cs @@ -2355,8 +2355,8 @@ private void GeneratePWAContent(StringBuilder extraBuilder) extraBuilder.AppendLine($""); - // See https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html - extraBuilder.AppendLine($""); + // See https://stackoverflow.com/a/27951414 + extraBuilder.AppendLine($""); if (manifestDocument["icons"] is JArray array && array.Where(v => v["sizes"]?.Value() == "1024x1024").FirstOrDefault() is JToken img)