Merge branch 'illegal_filename' of git://github.com/andrey-krutov/AntennaPod into andrey-krutov-illegal_filename

This commit is contained in:
daniel oeh 2014-11-10 12:33:46 +01:00
commit 71a9f44264
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.util.Arrays;
public class FileNameGenerator { public class FileNameGenerator {
private static final char[] ILLEGAL_CHARACTERS = { '/', '\\', '?', '%', private static final char[] ILLEGAL_CHARACTERS = { '/', '\\', '?', '%',
'*', ':', '|', '"', '<', '>' }; '*', ':', '|', '"', '<', '>', '\n' };
static { static {
Arrays.sort(ILLEGAL_CHARACTERS); Arrays.sort(ILLEGAL_CHARACTERS);
} }