From 7abc704c24a83d3ead9281f6ef9757d6c5c8df15 Mon Sep 17 00:00:00 2001
From: Davide De Rosa <keeshux@gmail.com>
Date: Fri, 5 Feb 2021 16:32:59 +0100
Subject: [PATCH] Omit Siri mention in macOS purchase

---
 .../App/macOS/Scenes/Purchase/PurchaseViewController.swift      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Passepartout/App/macOS/Scenes/Purchase/PurchaseViewController.swift b/Passepartout/App/macOS/Scenes/Purchase/PurchaseViewController.swift
index 0550c385..33580def 100644
--- a/Passepartout/App/macOS/Scenes/Purchase/PurchaseViewController.swift
+++ b/Passepartout/App/macOS/Scenes/Purchase/PurchaseViewController.swift
@@ -84,7 +84,7 @@ class PurchaseViewController: NSViewController {
             rows.append(.feature)
         }
 
-        let platformBulletsList: [String] = ProductManager.shared.featureProducts(excluding: [.fullVersion, .fullVersion_iOS, .fullVersion_macOS]).map {
+        let platformBulletsList: [String] = ProductManager.shared.featureProducts(excluding: [.siriShortcuts, .fullVersion, .fullVersion_iOS, .fullVersion_macOS]).map {
             return $0.localizedTitle
         }.sortedCaseInsensitive()
         let platformBullets = platformBulletsList.joined(separator: "\n")