mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix bad constraint checking in patch builder
This commit is contained in:
parent
b272f9edcd
commit
019bd9282b
@ -57,7 +57,7 @@ namespace Wabbajack.Common
|
||||
}
|
||||
catch (SQLiteException ex)
|
||||
{
|
||||
if (!ex.Message.StartsWith("constraint exception"))
|
||||
if (!ex.Message.StartsWith("constraint failed"))
|
||||
throw;
|
||||
}
|
||||
await patch.CopyToAsync(output);
|
||||
@ -109,7 +109,7 @@ namespace Wabbajack.Common
|
||||
}
|
||||
catch (SQLiteException ex)
|
||||
{
|
||||
if (!ex.Message.StartsWith("constraint exception"))
|
||||
if (!ex.Message.StartsWith("constraint failed"))
|
||||
throw;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user