From 3d1b89acd1ca7f2591826c6f8d1d402b671f6b09 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 25 Jun 2020 21:32:21 +0200 Subject: [PATCH] fix: for the last fix --- Dalamud/Plugin/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/PluginInstallerWindow.cs b/Dalamud/Plugin/PluginInstallerWindow.cs index ce9484d8c..1e31d9fc9 100644 --- a/Dalamud/Plugin/PluginInstallerWindow.cs +++ b/Dalamud/Plugin/PluginInstallerWindow.cs @@ -132,7 +132,7 @@ namespace Dalamud.Plugin ImGui.SameLine(); if (ImGui.Button(FontAwesomeIcon.Globe.ToIconString()) && pluginDefinition.RepoUrl.StartsWith("https://")) - Process.Start(pluginDefinition.Definition.RepoUrl); + Process.Start(pluginDefinition.RepoUrl); ImGui.PopFont(); }