[WebAOM 1.19h] - Recent renaming problems

misc client related stuff

Moderators: AniDB, AniDB API

Locked
persath
Posts: 1
Joined: Tue Sep 11, 2007 6:30 am

[WebAOM 1.19h] - Recent renaming problems

Post by persath »

Until recently i used the fallowing renaming rules without problems:

Code: Select all

IF A(!english) DO SET %ann - %enr - %epn - [%grp]
ELSE DO SET %eng - %enr - %epn - [%grp]
A couple of weeks ago it stoped working and would rename ALL episodes with the japanese name, i read tru the forum and some1 sugested using I(!eng) instead of the A(!english) to another user so i changed my renaming rules to:

Code: Select all

IF I(!eng) DO SET %ann - %enr - %epn - [%grp]
ELSE DO SET %eng - %enr - %epn - [%grp]
Now its even more confusing, some of the eps will be renamed correctly but other with official english name will still use the japanese (IE. Gurren Lagann) and others will use unofficial english names (IE. Jigoku Shoujo Futakomori).

Any help would be apriciated and sorry about any mistakes but english isn't my first language
epoximator
AniDB Staff
Posts: 379
Joined: Sun Nov 07, 2004 11:05 am

Post by epoximator »

the first rule never did work.. meaning you always used the ELSE part. it seemed to work because %eng willl just fall back on %ann if not defined.

so

IF I(eng) DO ADD %eng
ELSE DO ADD %ann

is meaningless because it is the default behavior

anyway, the second rule doesn't work as it should atm because of a bug in the server code (udp api). will fix
Locked