Merge branch 'claude/wizardly-antonelli-9f2795'

This commit is contained in:
jim
2026-05-09 20:24:53 -05:00
+2 -2
View File
@@ -244,7 +244,7 @@ namespace URLNotesGrabberCORE
} }
} }
CollectNotes(settings.GetValue<string>("PathOutput"), withoutNotesOnly, beforeDate); CollectNotes(settings.GetValue<string>("PathOutput"), withoutNotesOnly, beforeDate).GetAwaiter().GetResult();
break; break;
case "-blogsR": //collect notes from all posts case "-blogsR": //collect notes from all posts
@@ -1073,7 +1073,7 @@ namespace URLNotesGrabberCORE
return "UNKNOWN"; return "UNKNOWN";
} }
static async void CollectNotes(string outPath, bool withoutNotesOnly = true, DateTime? beforeDate = null) static async Task CollectNotes(string outPath, bool withoutNotesOnly = true, DateTime? beforeDate = null)
{ {
List<Tuple<string, long, long, long>> posts = DataAccess.GetPosts(withoutNotesOnly, beforeDate); List<Tuple<string, long, long, long>> posts = DataAccess.GetPosts(withoutNotesOnly, beforeDate);