We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e9ce6b commit 4952656Copy full SHA for 4952656
code/initialization/config.go
@@ -135,7 +135,8 @@ func (config *Config) GetKeyFile() string {
135
func filterFormatKey(keys []string) []string {
136
var result []string
137
for _, key := range keys {
138
- if strings.HasPrefix(key, "sk-") {
+ if strings.HasPrefix(key, "sk-") || strings.HasPrefix(key,
139
+ "fk") {
140
result = append(result, key)
141
}
142
0 commit comments