From d0defc62833c1b41999d2f8791c44bf6dd2f2940 Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Sat, 27 Feb 2016 08:36:14 +0100 Subject: [PATCH] Update youtube bridge Before, the channel id was supposed to be a number. But Youtube changed how they store a channel id. It's no longer a number, it's a string. Now, user can enter a text string instead of a number. See the example with this channel id: UC9fGq2-6FaftcegcIadLf6A --- bridges/YoutubeBridge.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridges/YoutubeBridge.php b/bridges/YoutubeBridge.php index 7147a23e..6869ac00 100644 --- a/bridges/YoutubeBridge.php +++ b/bridges/YoutubeBridge.php @@ -31,10 +31,10 @@ class YoutubeBridge extends BridgeAbstract { $this->parameters['By channel id'] = '[ { - "type" : "number", + "type" : "text", "identifier" : "c", "name" : "channel id", - "exampleValue" : "15", + "exampleValue" : "test", "required" : "required" } ]';