Skip to content
This repository was archived by the owner on Mar 15, 2020. It is now read-only.

Commit 843cc2b

Browse files
committed
Fix minor bug in calling versionparser method
1 parent 5dbb678 commit 843cc2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Strategy/GithubStrategy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public function getCurrentRemoteVersion(Updater $updater)
108108
} elseif ($this->getStability() === self::UNSTABLE) {
109109
$this->remoteVersion = $versionParser->getMostRecentUnstable();
110110
} else {
111-
$this->remoteVersion = $versionParser->getMostRecentAny();
111+
$this->remoteVersion = $versionParser->getMostRecentAll();
112112
}
113113

114114
/**

0 commit comments

Comments
 (0)