From 30781ce4fd84badb184096efb3a763b8d9f3512d Mon Sep 17 00:00:00 2001 From: ScymicX <74851861+ScymicX@users.noreply.github.com> Date: Tue, 23 Jun 2026 21:16:54 +0200 Subject: [PATCH] Add homepage URL to extension.json Due to a crash when opening the extension from the gallery: [18:12:45.4391623] [Error] GlobalErrorHandler.cs::HandleException::69 System.ArgumentException: De parameter is onjuist. at ExtensionGalleryItemPage_obj1_Bindings.Update_ViewModel_Homepage(String, Int32) Fix: adding missing `homepage` field to extension.json causes CmdPal to crash when opening the Game Library Dock entry in the gallery. **Root cause:** `ExtensionGalleryItemPage` binds `Homepage` to a UI element that expects a non-null string. The missing field causes an `ArgumentException` on page load. **Fix:** Added `"homepage": "https://github.com/ScymicX/Steam-Dock-Extension"` to `extensions/denniezorg/game-library-dock/extension.json`. --- extensions/denniezorg/game-library-dock/extension.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/denniezorg/game-library-dock/extension.json b/extensions/denniezorg/game-library-dock/extension.json index e113ac6..b577f43 100644 --- a/extensions/denniezorg/game-library-dock/extension.json +++ b/extensions/denniezorg/game-library-dock/extension.json @@ -9,6 +9,7 @@ "url": "https://github.com/ScymicX" }, "icon": "icon.png", + "homepage": "https://github.com/ScymicX/Steam-Dock-Extension", "tags": [ "gaming", "friends", @@ -26,4 +27,4 @@ "id": "9MX24LVV6P2D" } ] -} \ No newline at end of file +}