Skip to content

Commit 9977833

Browse files
committed
Fix crash on "database too old" error
1 parent 151cedc commit 9977833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VidCoder/Model/Database.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static void Initialize()
5252
if (databaseVersion < 35)
5353
{
5454
string message = string.Format(CultureInfo.CurrentCulture, MainRes.DataTooOldRunVidCoderVersion, "3.15");
55-
StaticResolver.Resolve<IMessageBoxService>().Show(message);
55+
MessageBox.Show(message);
5656
throw new InvalidOperationException("Database too old");
5757
}
5858

0 commit comments

Comments
 (0)