windows 10 & sql fixes

* fixed files wit ' in the name causing a crash
*fixed windows 10 is not detected
This commit is contained in:
Jannik
2018-03-28 21:58:01 +02:00
parent f9a54abf68
commit 2d5887db4f
2 changed files with 2 additions and 2 deletions

View File

@ -333,7 +333,7 @@ public class DBController {
if (!filmsdbStreamURL.contains(episode.getPath())) {
LOGGER.info("Added \"" + file.getName() + "\", Episode: " + episode.getName() + " to database");
stmt.executeUpdate("insert into films values ("
+ "'" + episode.getPath() + "',"
+ "'" + episode.getPath().replace("'", "''") + "',"
+ "'" + cutOffEnd(file.getName()) + "','" + sn + "','" + ep + "', 0, 0)");
connection.commit();
stmt.close();