mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Forgot to migrate this one variable
This commit is contained in:
@@ -51,7 +51,7 @@ namespace SabreTools
|
||||
/// Perform initial or incremental import of DATs in the root folder
|
||||
/// </summary>
|
||||
/// <param name="ignore">False if each DAT that has no defined source asks for user input (default), true otherwise</param>
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user