Fix typo with task setting name

This commit is contained in:
Danny 2024-04-09 20:59:14 -04:00 committed by GitHub
parent d860104a08
commit 08abafe83a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1312,7 +1312,7 @@ public static async Task OCRImage(Bitmap bmp, TaskSettings taskSettings = null,
{
if (taskSettings == null) taskSettings = TaskSettings.GetDefaultTaskSettings();
bool notificationsEnabled = taskSettings.GeneralSettings.ShowToastNotificationAfterTaskComplete;
bool notificationsEnabled = taskSettings.GeneralSettings.ShowToastNotificationAfterTaskCompleted;
await OCRImage(bmp, taskSettings.CaptureSettingsReference.OCROptions, filePath, notificationsEnabled);
}