We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e52e007 commit f88bd30Copy full SHA for f88bd30
src/Utils.vala
@@ -1508,13 +1508,13 @@ namespace Gabut {
1508
}
1509
1510
private void check_optdown () {
1511
- if ((db_table ("download") - 1) == DBDownload.FILEORDIR) {
+ if ((db_table ("download") - 1) != DBDownload.FILEORDIR) {
1512
if (db_table ("download") > 0) {
1513
GabutApp.db.exec ("DROP TABLE download;");
1514
1515
table_download (GabutApp.db);
1516
1517
- if ((db_table ("options") - 1) == DBOption.SELECTFILE) {
+ if ((db_table ("options") - 1) != DBOption.SELECTFILE) {
1518
if (db_table ("options") > 0) {
1519
GabutApp.db.exec ("DROP TABLE options;");
1520
0 commit comments