ok i really need some help now. now every time i start cutetube qml, my download list is x^2. i went to the download list and delete them. but next time i come back to cutetubeqml, its back again only x^2 again. is there a list file i can remove? or is there some file with improper permissions?
function initialize() { var db = getDatabase(); db.transaction( function(tx) { // Create the settings table if it doesn't already exist // If the table exists, this is skipped tx.executeSql('CREATE TABLE IF NOT EXISTS accounts(username TEXT UNIQUE, password TEXT, isDefault INTEGER)'); tx.executeSql('CREATE TABLE IF NOT EXISTS settings(setting TEXT UNIQUE, value TEXT)'); tx.executeSql('CREATE TABLE IF NOT EXISTS searches(searchterm TEXT UNIQUE)'); tx.executeSql('DROP TABLE downloads'); tx.executeSql('CREATE TABLE IF NOT EXISTS downloads (filePath TEXT UNIQUE, playerUrl TEXT, title TEXT, thumbnail TEXT)'); tx.executeSql('CREATE TABLE IF NOT EXISTS archive (filePath TEXT UNIQUE, title TEXT, thumbnail TEXT, quality TEXT, isNew INTEGER)'); setDefaultSettings(); }); }