Tag Favoriting (#4728)

* Add missing key unbind
---------
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
Dankonite
2024-05-08 20:04:58 -06:00
committed by GitHub
parent 1cee1ccfe2
commit 29859fa4ad
22 changed files with 162 additions and 9 deletions

View File

@@ -1480,7 +1480,10 @@ func createPerformers(ctx context.Context, n int, o int) error {
return nil
}
func getTagBoolValue(index int) bool {
index = index % 2
return index == 1
}
func getTagStringValue(index int, field string) string {
return "tag_" + strconv.FormatInt(int64(index), 10) + "_" + field
}