mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
feat(indexers): FearNoPeer update IRC server (#1816)
* feat(indexers): update FearNoPeer IRC server * Update FNP irc server and add migrations for SceneHD and BitHUmen changes all in one. The update for FNP from LibraIRC to P2P-Network will set the nick to nick_0 to not cause any UNIQUE constraint issues. Users will have to update or merge with existing P2P-Network config.
This commit is contained in:
parent
099905f5ec
commit
1227657ae8
3 changed files with 26 additions and 2 deletions
|
@ -974,5 +974,17 @@ CREATE INDEX filter_priority_index
|
|||
`UPDATE irc_network
|
||||
SET server = 'irc.fuzer.xyz'
|
||||
WHERE server = 'irc.fuzer.me';
|
||||
`,
|
||||
`UPDATE irc_network
|
||||
SET server = 'irc.scenehd.org'
|
||||
WHERE server = 'irc.scenehd.eu';
|
||||
|
||||
UPDATE irc_network
|
||||
SET server = 'irc.p2p-network.net', name = 'P2P-Network', nick = nick || '_0'
|
||||
WHERE server = 'irc.librairc.net';
|
||||
|
||||
UPDATE irc_network
|
||||
SET server = 'irc.atw-inter.net', name = 'ATW-Inter'
|
||||
WHERE server = 'irc.ircnet.com';
|
||||
`,
|
||||
}
|
||||
|
|
|
@ -1616,5 +1616,17 @@ CREATE INDEX filter_priority_index
|
|||
`UPDATE irc_network
|
||||
SET server = 'irc.fuzer.xyz'
|
||||
WHERE server = 'irc.fuzer.me';
|
||||
`,
|
||||
`UPDATE irc_network
|
||||
SET server = 'irc.scenehd.org'
|
||||
WHERE server = 'irc.scenehd.eu';
|
||||
|
||||
UPDATE irc_network
|
||||
SET server = 'irc.p2p-network.net', name = 'P2P-Network', nick = nick || '_0'
|
||||
WHERE server = 'irc.librairc.net';
|
||||
|
||||
UPDATE irc_network
|
||||
SET server = 'irc.atw-inter.net', name = 'ATW-Inter'
|
||||
WHERE server = 'irc.ircnet.com';
|
||||
`,
|
||||
}
|
||||
|
|
|
@ -19,8 +19,8 @@ settings:
|
|||
help: "Go to your profile > Settings > Security > RSS Key (RID) and paste your RID into this field."
|
||||
|
||||
irc:
|
||||
network: LibraIRC
|
||||
server: irc.librairc.net
|
||||
network: P2P-Network
|
||||
server: irc.p2p-network.net
|
||||
port: 6697
|
||||
tls: true
|
||||
channels:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue