From fae59592fbd0ebc7ffd296aa1018b2aff4e3fdd9 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 7 Feb 2017 15:34:15 +0100 Subject: [PATCH] Fix Steam call --- nntmux/Games.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nntmux/Games.php b/nntmux/Games.php index c737fc92d..9bdf35118 100755 --- a/nntmux/Games.php +++ b/nntmux/Games.php @@ -401,7 +401,7 @@ class Games // Process Steam first before giantbomb // Steam has more details $this->_gameResults = []; - $this->_getGame = new Steam($this->pdo); + $this->_getGame = new Steam(['DB' => $this->pdo]); $this->_classUsed = 'steam'; $this->_getGame->searchTerm = $gameInfo['title']; $steamGameID = $this->_getGame->search($gameInfo['title']);