From 3d7dcbbffe886f7b7eda1680b9348524e2f5fdee Mon Sep 17 00:00:00 2001 From: ChsBuffer <33744752+chsbuffer@users.noreply.github.com> Date: Sun, 4 Apr 2021 21:43:24 +0800 Subject: [PATCH] Fix open links in about error --- Netch/Forms/AboutForm.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Netch/Forms/AboutForm.cs b/Netch/Forms/AboutForm.cs index d15465f8..96431cae 100644 --- a/Netch/Forms/AboutForm.cs +++ b/Netch/Forms/AboutForm.cs @@ -21,17 +21,17 @@ namespace Netch.Forms private void NetchPictureBox_Click(object sender, EventArgs e) { - Process.Start("https://github.com/NetchX/Netch"); + Utils.Utils.Open("https://github.com/NetchX/Netch"); } private void ChannelLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - Process.Start("https://t.me/Netch"); + Utils.Utils.Open("https://t.me/Netch"); } private void SponsorPictureBox_Click(object sender, EventArgs e) { - Process.Start("https://www.mansora.co"); + Utils.Utils.Open("https://www.mansora.co"); } } } \ No newline at end of file