From 1d5a9251eb576fb9635de156ae73fee572f3a87f Mon Sep 17 00:00:00 2001 From: KKW557 Date: Sun, 4 Jan 2026 12:07:17 +0800 Subject: [PATCH] Bugfix: Sync missing JSON field RepoUrl in ModDeclare constructor --- api/ModDeclare.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/api/ModDeclare.cs b/api/ModDeclare.cs index 918ce4d..f000bd7 100644 --- a/api/ModDeclare.cs +++ b/api/ModDeclare.cs @@ -115,6 +115,7 @@ public ModDeclare(string pFilePath) IncompatibleWith = modDeclare.IncompatibleWith; ModType = modDeclare.ModType; UsePublicizedAssembly = modDeclare.UsePublicizedAssembly; + RepoUrl = modDeclare.RepoUrl; Dependencies ??= Array.Empty(); OptionalDependencies ??= Array.Empty();