From 770c1e937c099ce1f8a9b69d41e8c79934b25718 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 21 Sep 2020 22:42:11 -0700 Subject: [PATCH 1/2] =?UTF-8?q?Update=20RSWeb=20to=20get=20Nate=E2=80=99s?= =?UTF-8?q?=20crash=20fix=20in=20punycode=20code.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- submodules/RSWeb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/RSWeb b/submodules/RSWeb index 0cee6eafd..6f5ff319b 160000 --- a/submodules/RSWeb +++ b/submodules/RSWeb @@ -1 +1 @@ -Subproject commit 0cee6eafda53e27ee6a4e1249a27a8b9d79d2aed +Subproject commit 6f5ff319b0c0340b449b53833c45c53347aa1c56 From 1c4c24721b23c827feae6c2ae53713cad2cc96c3 Mon Sep 17 00:00:00 2001 From: Angelo Stavrow Date: Tue, 22 Sep 2020 07:10:13 -0400 Subject: [PATCH 2/2] Fix action for open-system-preferences button in alert --- Mac/Inspector/WebFeedInspectorViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Inspector/WebFeedInspectorViewController.swift b/Mac/Inspector/WebFeedInspectorViewController.swift index 877205359..c1586f05a 100644 --- a/Mac/Inspector/WebFeedInspectorViewController.swift +++ b/Mac/Inspector/WebFeedInspectorViewController.swift @@ -204,7 +204,7 @@ private extension WebFeedInspectorViewController { updateAlert.addButton(withTitle: NSLocalizedString("Close", comment: "Close")) let modalResponse = updateAlert.runModal() if modalResponse == .alertFirstButtonReturn { - NSWorkspace.shared.open(URL(fileURLWithPath: "x-apple.systempreferences:com.apple.preference.notifications")) + NSWorkspace.shared.open(URL(string: "x-apple.systempreferences:com.apple.preference.notifications")!) } }