From 843cc2bbadcd7ca0d4228e2d71833384a8c576b6 Mon Sep 17 00:00:00 2001 From: Padraic Brady Date: Fri, 29 May 2015 16:32:45 +0100 Subject: [PATCH] Fix minor bug in calling versionparser method --- src/Strategy/GithubStrategy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Strategy/GithubStrategy.php b/src/Strategy/GithubStrategy.php index 31a976f..0a54a29 100644 --- a/src/Strategy/GithubStrategy.php +++ b/src/Strategy/GithubStrategy.php @@ -108,7 +108,7 @@ public function getCurrentRemoteVersion(Updater $updater) } elseif ($this->getStability() === self::UNSTABLE) { $this->remoteVersion = $versionParser->getMostRecentUnstable(); } else { - $this->remoteVersion = $versionParser->getMostRecentAny(); + $this->remoteVersion = $versionParser->getMostRecentAll(); } /**