Files
newznab-tmux-NNTmux/app
Kcchouette e5df723720 fix: correct reversed stripos/strpos arguments in ConsoleService
Fix 5 instances of stripos('literal', ) where arguments were
reversed, causing the needle to be searched inside a short literal
instead of the literal inside the variable:

- Line 599: stripos('dlc', ) → stripos(, 'dlc') — DLC
  branch was never entered for real game titles
- Line 601: stripos('Rock Band Network', ) → stripos(, ...)
  — Rock Band check was dead code inside the dead DLC branch
- Line 603: strpos('-', ) → str_contains(, '-') — DLC
  hyphen splitting never triggered
- Line 622: stripos('PSX2PSP', ) → stripos(, ...)
  — worked by accident (PSX is prefix of PSX2PSP)
- Line 626: stripos('XBLA', ) + stripos('dlc', ) →
  stripos(, ...) + stripos(, ...)

Also adds ConsoleServiceDlcParsingTest (9 tests) covering DLC title
parsing, Rock Band Network handling, hyphen splitting, and XBLA
platform upgrade.
2026-06-13 21:05:15 +02:00
..
2026-06-12 10:11:15 +02:00
2026-04-21 13:18:34 +02:00
2026-04-21 17:35:52 +02:00
2026-03-11 10:11:30 +01:00
2026-06-12 10:16:12 +02:00
2026-06-12 10:11:15 +02:00
2026-04-21 17:35:52 +02:00
2026-06-12 10:11:15 +02:00
2026-06-12 10:11:15 +02:00
2026-05-07 14:03:21 +02:00
2026-06-11 10:32:38 +02:00
2026-03-27 14:39:27 +01:00
2026-06-11 10:32:38 +02:00
2026-05-30 23:31:00 +02:00
2026-05-14 11:39:21 +02:00
2026-04-21 22:13:34 +02:00
2026-05-30 23:31:00 +02:00