- Fix links not showing up in webinterface

- Switch to debug logging
This commit is contained in:
Infi
2026-02-09 11:32:06 +01:00
parent 638ec1a211
commit 4341035c74
7 changed files with 14 additions and 7 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public static class WrapperUtil
public static IEnumerable<(T Value, int Index)> WithIndex<T>(this IEnumerable<T> list)
=> list.Select((x, i) => (x, i));
/// <summary> Return the first object fulfilling the predicate or null for structs. </summary>
/// <summary> Return the first object fulfilling the predicate or null for structs.</summary>
/// <param name="values"> The enumerable. </param>
/// <param name="predicate"> The predicate. </param>
/// <returns> The first object fulfilling the predicate, or a null-optional. </returns>