mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
fix(indexers): could not create (#1479)
* fix(indexers): could not create * fix(indexers): remove log statement
This commit is contained in:
parent
34561c1491
commit
9227bdb5dc
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ export function IndexerAddForm({ isOpen, toggle }: AddProps) {
|
||||||
const channels: IrcChannel[] = [];
|
const channels: IrcChannel[] = [];
|
||||||
if (ind.irc?.channels.length) {
|
if (ind.irc?.channels.length) {
|
||||||
let channelPass = "";
|
let channelPass = "";
|
||||||
if (formData.irc.channels?.password !== "") {
|
if (formData.irc && formData.irc.channels && formData.irc?.channels?.password !== "") {
|
||||||
channelPass = formData.irc.channels.password;
|
channelPass = formData.irc.channels.password;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue