Public Access
Fix past meeting summary tool edge cases
PR and Push Build/Test / build-and-test (push) Successful in 10m54s
PR and Push Build/Test / build-and-test (push) Successful in 10m54s
This commit is contained in:
@@ -29,7 +29,7 @@ public sealed class BoundMeetingProjectResolver
|
||||
return [];
|
||||
}
|
||||
|
||||
var projectNames = await ReadMeetingProjectNamesAsync(artifacts.MeetingNotePath, cancellationToken);
|
||||
var projectNames = await ReadMeetingProjectNamesAsync(artifacts, cancellationToken);
|
||||
if (projectNames.Count == 0)
|
||||
{
|
||||
return [];
|
||||
@@ -42,6 +42,13 @@ public sealed class BoundMeetingProjectResolver
|
||||
.ToList();
|
||||
}
|
||||
|
||||
public Task<HashSet<string>> ReadMeetingProjectNamesAsync(
|
||||
MeetingSessionArtifacts artifacts,
|
||||
CancellationToken cancellationToken = default)
|
||||
{
|
||||
return ReadMeetingProjectNamesAsync(artifacts.MeetingNotePath, cancellationToken);
|
||||
}
|
||||
|
||||
private static async Task<HashSet<string>> ReadMeetingProjectNamesAsync(
|
||||
string meetingNotePath,
|
||||
CancellationToken cancellationToken)
|
||||
|
||||
Reference in New Issue
Block a user