change config names
[nikiroo-utils.git] / src / be / nikiroo / fanfix / supported / BasicSupportHelper.java
index 652506762ff6b9cc5aa13f19836d40d04e16bd42..c9c9f0843cdf12f08d3e28c0b0f0d0782efab2ac 100644 (file)
@@ -204,7 +204,7 @@ class BasicSupportHelper {
        public static String fixAuthor(String author) {
                if (author != null) {
                        for (String suffix : new String[] { " ", ":" }) {
-                               for (String byString : Instance.getConfig().getList(Config.BYS)) {
+                               for (String byString : Instance.getConfig().getList(Config.CONF_BYS)) {
                                        byString += suffix;
                                        if (author.toUpperCase().startsWith(byString.toUpperCase())) {
                                                author = author.substring(byString.length()).trim();