Skip to content

Commit

Permalink
Fixed: Bubble bug with log overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RenNagasaki committed Aug 10, 2024
1 parent 717b1ff commit 1c5918d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Echokraut/Echokraut.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="Dalamud.Plugin.Bootstrap.targets" />

<PropertyGroup>
<Version>0.10.5.6</Version>
<Version>0.10.5.7</Version>
<Description>A TTS Dalamud Plugin that breaks the silence! For self hosted TTS Services.</Description>
<PackageProjectUrl>https://github.com/RenNagasaki/Echokraut</PackageProjectUrl>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
Expand Down
4 changes: 2 additions & 2 deletions Echokraut/Helper/LogHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public static List<LogMessage> RecreateLogList(TextSource textSource)
}
logListFiltered.Sort((p, q) => p.timeStamp.CompareTo(q.timeStamp));

return logListFiltered;
return new List<LogMessage> (logListFiltered);
}

public static List<LogMessage> FilterLogList(TextSource textSource, string eventId)
Expand Down Expand Up @@ -255,7 +255,7 @@ public static List<LogMessage> FilterLogList(TextSource textSource, string event
break;
}

return logListFiltered;
return new List<LogMessage>(logListFiltered);
}
}
}

0 comments on commit 1c5918d

Please sign in to comment.