Skip to content
Merged
2 changes: 1 addition & 1 deletion src/NRedisStack/ModulPrefixes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class ModulPrefixes

public static TdigestCommands TDIGEST(this IDatabase db) => new TdigestCommands(db);

public static SearchCommands FT(this IDatabase db) => new SearchCommands(db);
public static SearchCommands FT(this IDatabase db, int? searchDialect = null) => new SearchCommands(db, searchDialect);

public static JsonCommands JSON(this IDatabase db) => new JsonCommands(db);

Expand Down
Loading