diff --git a/DATabaseTwo/Import.cs b/DATabaseTwo/Import.cs index c65fe531..6e2ebcd5 100644 --- a/DATabaseTwo/Import.cs +++ b/DATabaseTwo/Import.cs @@ -51,7 +51,7 @@ namespace SabreTools /// Perform initial or incremental import of DATs in the root folder /// /// False if each DAT that has no defined source asks for user input (default), true otherwise - public bool ImportData(bool ignore = false) + public bool ImportData() { _logger.Log("Beginning import/update process"); using (SqliteConnection dbc = new SqliteConnection(_connectionString)) @@ -120,7 +120,7 @@ COMMIT;"; hashes.Add(hash, hashid); // If we don't care about source, stop here - if (ignore) + if (_ignore) { continue; }