WT 1.1.18+9 sales page products

This commit is contained in:
bossanyit
2021-06-08 17:02:39 +02:00
parent e38a26dbc9
commit e5f5f305dd
5 changed files with 13 additions and 44 deletions
+6 -2
View File
@@ -34,8 +34,12 @@ class UserRepository with Logging {
await CustomerApi().addUser(modelUser);
}
} catch (e) {
log(e.toString());
throw new Exception(e);
final String message = e.toString();
log(message);
if (message.contains("CERT_ALREADY_IN_HASH_TABLE")) {
} else {
throw new Exception(e);
}
}
}