Skip to content

Commit

Permalink
Fix code style (no semantic changes), #2022
Browse files Browse the repository at this point in the history
  • Loading branch information
t-w committed Nov 11, 2023
1 parent 19fcf48 commit b32200b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions application/netscape/NetscapeBookmarkUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@ public function import($post, UploadedFileInterface $file)
if ($existingLink !== false) {
if ($overwrite === false) {
// Do not overwrite an existing link
$link->setTags( array_unique (
array_merge( $link->getTags(), $bkm['tags'] ) ) );
$link->setTags(array_unique(array_merge($link->getTags(), $bkm['tags'])));
$skipCount++;
continue;
}
Expand Down

0 comments on commit b32200b

Please sign in to comment.