Avoid "duplicate entry" error

This commit is contained in:
Michael 2021-02-28 19:31:12 +00:00
parent a1e2794c64
commit 73e36b64e6
1 changed files with 3 additions and 1 deletions

View File

@ -125,7 +125,9 @@ class Tag
// The contact wasn't found in the system (most likely some dead account)
// We ensure that we only store a single entry by overwriting the previous name
Logger::info('Contact not found, updating tag', ['url' => $url, 'name' => $name]);
DBA::update('tag', ['name' => substr($name, 0, 96)], ['url' => $url]);
if (!DBA::exists('tag', ['name' => substr($name, 0, 96), 'url' => $url])) {
DBA::update('tag', ['name' => substr($name, 0, 96)], ['url' => $url]);
}
}
}