Increase matching percentage for matchPreDbFiles function

This commit is contained in:
DariusIII
2018-10-19 09:19:11 +02:00
parent a504370c14
commit 3f4397ffce
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1209,7 +1209,7 @@ class NameFixer
$preFtMatch = $this->preMatch($result['filename']);
if ($preFtMatch[0] === true) {
similar_text($preMatch[1], $preFtMatch[1], $percent);
if ($percent >= 85) {
if ($percent >= 93) {
$this->_fileName = $result['filename'];
$release->filename = $this->_fileName;
if ($result['title'] !== $release->searchname) {
+2
View File
@@ -1,3 +1,5 @@
2018-10-19 DariusIII
* Chg: Increase matching percentage for matchPreDbFiles function
2018-10-18 DariusIII
* Chg: Remove unused $this->pdo instances
* Chg: Try to further improve speed and RAM consumption of matchPreDbFiles function