Skip to content

Commit 461397b

Browse files
committed
Use local mutex insterd of global mutex
1 parent 43347ec commit 461397b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RepostConfirmationCanceler/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This Source Code Form is subject to the terms of the Mozilla Public
1515

1616
class Program
1717
{
18-
private static Mutex MyMutex { get; } = new Mutex(false, @"Global\RepostConfirmationCancelerMutex");
18+
private static Mutex MyMutex { get; } = new Mutex(false, @"RepostConfirmationCancelerMutex");
1919

2020
[STAThread]
2121
static void Main()

0 commit comments

Comments
 (0)