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)
|
catch (SQLiteException ex)
|
||||||
{
|
{
|
||||||
if (!ex.Message.StartsWith("constraint exception"))
|
if (!ex.Message.StartsWith("constraint failed"))
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
await patch.CopyToAsync(output);
|
await patch.CopyToAsync(output);
|
||||||
@ -109,7 +109,7 @@ namespace Wabbajack.Common
|
|||||||
}
|
}
|
||||||
catch (SQLiteException ex)
|
catch (SQLiteException ex)
|
||||||
{
|
{
|
||||||
if (!ex.Message.StartsWith("constraint exception"))
|
if (!ex.Message.StartsWith("constraint failed"))
|
||||||
throw;
|
throw;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user