Skip to content

Commit

Permalink
[index] Fix detect action after listBridges rename (#947)
Browse files Browse the repository at this point in the history
Commit 88b0656 renamed listBridges function which was not taken into
account when adding the detect action.
  • Loading branch information
Roliga authored and logmanoriginal committed Nov 29, 2018
1 parent f4b46e4 commit bdcb7a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
$format = $params['format']
or returnClientError('You must specify a format!');

foreach(Bridge::listBridges() as $bridgeName) {
foreach(Bridge::getBridgeNames() as $bridgeName) {

if(!Bridge::isWhitelisted($bridgeName)) {
continue;
Expand Down

0 comments on commit bdcb7a9

Please sign in to comment.