mirror of
https://github.com/friendica/friendica
synced 2024-11-11 18:22:55 +00:00
Part of bugfix for storage move problem
@fabrixxm is this already good to change?
This commit is contained in:
parent
60a74fd5dc
commit
e20e62ffd6
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ class StorageManager
|
|||
|
||||
if ($destinationRef !== '') {
|
||||
$this->logger->info('update row');
|
||||
if ($this->dba->update($table, ['backend-class' => $destination, 'backend-ref' => $destinationRef, 'data' => ''], ['id' => $id])) {
|
||||
if ($this->dba->update($table, ['backend-class' => $destination::getName(), 'backend-ref' => $destinationRef, 'data' => ''], ['id' => $id])) {
|
||||
if (!empty($source)) {
|
||||
$this->logger->info('Delete data from old backend.', ['oldBackend' => $source, 'oldReference' => $sourceRef]);
|
||||
$source->delete($sourceRef);
|
||||
|
|
Loading…
Reference in a new issue