feat(indexers): add AnimeWorld (#1472)

* feat(indexers): add AnimeWorld

* add source information
add missing EOF

* fix(indexers): add missing test vars

* fix(indexers): add missing test vars
enhancement(indexers): remove brackets from tags var

* feat(indexers): add channel password field

* fix(indexers): channel password

---------

Co-authored-by: martylukyy <35452459+martylukyy@users.noreply.github.com>
This commit is contained in:
Pheromir 2024-03-24 12:22:51 +01:00 committed by GitHub
parent d1f0ec94cd
commit f31ec2044e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 125 additions and 2 deletions

View file

@ -371,8 +371,8 @@ export function IndexerAddForm({ isOpen, toggle }: AddProps) {
const channels: IrcChannel[] = [];
if (ind.irc?.channels.length) {
let channelPass = "";
if (formData.channels?.password !== "") {
channelPass = formData.channels.password;
if (formData.irc.channels?.password !== "") {
channelPass = formData.irc.channels.password;
}
ind.irc.channels.forEach(element => {