modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2025-04-16 19:22:47 +04:00
parent 0e9be5f221
commit 91beea9c29

View File

@ -53,9 +53,9 @@ class SqliteStorage extends CapacitorStorage {
} }
protected function _addToChannelsSql(CapacitorChannel $channel): array { protected function _addToChannelsSql(CapacitorChannel $channel): array {
return cl::merge(parent::_addToChannelsSql($channel), [ $sql = parent::_addToChannelsSql($channel);
"suffix" => "on conflict ignore", $sql[0] = "insert or ignore";
]); return $sql;
} }
protected function _afterCreate(CapacitorChannel $channel): void { protected function _afterCreate(CapacitorChannel $channel): void {