Remove extra argumnet for sphinxsearch deletRelease function

This commit is contained in:
DariusIII
2018-02-08 15:19:19 +01:00
parent e9bc32f897
commit e9828c321b
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1,4 +1,5 @@
2018-02-08 DariusIII
* Chg: Remove extra argumnet for sphinxsearch deletRelease function
* Chg: Update logging configuration
* Chg: Make sphinx only search engine, use foolz/sphinxql-query-builder to add files to sphinx index
* Chg: Update files with laravel 5.6 changes
+1 -1
View File
@@ -555,7 +555,7 @@ class Releases
$releaseImage->delete($identifiers['g']);
// Delete from sphinx.
$this->sphinxSearch->deleteRelease($identifiers, $this->pdo);
$this->sphinxSearch->deleteRelease($identifiers);
// Delete from DB.
Release::query()->where('guid', $identifiers['g'])->delete();