From 72b2e95d33b53a95496d540170cb872e57494d7f Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Thu, 9 Oct 2025 11:20:56 -0500 Subject: [PATCH] Increase Tags limit to 64 --- src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs b/src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs index 5e4e45bd..033ce3f9 100644 --- a/src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs +++ b/src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs @@ -17,7 +17,7 @@ public class Tags : ApiArray { private const bool Nullable = true; private const bool Unique = true; - private const uint Max = 16; + private const uint Max = 64; private static readonly Type Validator = typeof(TagValidator); ///