Skip to content

Commit

Permalink
feat: 允许qpi2d
Browse files Browse the repository at this point in the history
  • Loading branch information
Leizhenpeng committed Apr 21, 2023
1 parent 7e9ce6b commit 4952656
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/initialization/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ func (config *Config) GetKeyFile() string {
func filterFormatKey(keys []string) []string {
var result []string
for _, key := range keys {
if strings.HasPrefix(key, "sk-") {
if strings.HasPrefix(key, "sk-") || strings.HasPrefix(key,
"fk") {
result = append(result, key)
}
}
Expand Down

0 comments on commit 4952656

Please sign in to comment.