Browse Source

generate keywords on file parsed only

main
ghost 1 year ago
parent
commit
68fbafaefa
  1. 5
      src/Service/TorrentService.php

5
src/Service/TorrentService.php

@ -154,8 +154,8 @@ class TorrentService
{ {
$keywords = []; $keywords = [];
$file = $this->readTorrentFileByFilepath($filepath); if ($file = $this->readTorrentFileByFilepath($filepath))
{
foreach ($file->getFileList() as $file) foreach ($file->getFileList() as $file)
{ {
$words = explode( $words = explode(
@ -196,6 +196,7 @@ class TorrentService
$keywords = array_merge($keywords, $words); $keywords = array_merge($keywords, $words);
} }
}
return array_unique($keywords); return array_unique($keywords);
} }

Loading…
Cancel
Save