Update doc lib, removed pinned SQLite

This commit is contained in:
2026-07-21 07:59:36 -04:00
parent c764eed81d
commit 2f22a1a2d7
2 changed files with 12 additions and 10 deletions
+4
View File
@@ -322,7 +322,11 @@ module Cache =
let private _cache = ConcurrentDictionary<string, IFluidTemplate> ()
/// Custom include parameter pattern
#if NET8_0
let private hasInclude = Regex("""{% include_template \"(.*)\" %}""", RegexOptions.None, TimeSpan.FromSeconds 2.0)
#else
let private hasInclude = Regex("""{% include_template \"(.*)\" %}""", RegexOptions.None, TimeSpan.FromSeconds 2L)
#endif
/// <summary>Get a template for the given theme and template name</summary>
/// <param name="themeId">The ID of the theme for which a template should be retrieved</param>