Compare commits

...

2 Commits

Author SHA1 Message Date
7d539cb99c
chore: bump version to 1.2.1 2024-01-12 19:30:27 -05:00
8824139295
fix: check for active question properly 2024-01-12 19:30:12 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<Version>1.2.0</Version> <Version>1.2.1</Version>
<TargetFramework>net7.0-windows</TargetFramework> <TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>

View File

@ -167,7 +167,7 @@ internal class QuestionManager : IDisposable, IReadOnlyList<IQuestion> {
return; return;
} }
var active = this.FirstOrDefault(q => q.Active); var active = this.Current;
if (active is not BasicQuestion) { if (active is not BasicQuestion) {
return; return;
} }