forked from blallo/rss-bridge
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
This commit is contained in:
parent
21ed355343
commit
d0defc6283
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
}
|
||||
]';
|
||||
|
|
Loading…
Reference in a new issue