From bdcb7a9829763abd8f4f6a75563e05cdba9a3329 Mon Sep 17 00:00:00 2001 From: Roliga Date: Thu, 29 Nov 2018 16:44:38 +0100 Subject: [PATCH] [index] Fix detect action after listBridges rename (#947) Commit 88b0656 renamed listBridges function which was not taken into account when adding the detect action. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 9fb8f2a9..0998c829 100644 --- a/index.php +++ b/index.php @@ -104,7 +104,7 @@ try { $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;