Skip to content

Commit

Permalink
Revert "just a desperate test"
Browse files Browse the repository at this point in the history
This reverts commit 67e6de6.
  • Loading branch information
aduffeck committed Mar 10, 2023
1 parent 13e04c7 commit 90771c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/utils/decomposedfs/metadata/ini_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ func needsEncoding(s []byte) bool {
func encodeAttribs(attribs map[string][]byte) map[string]string {
encAttribs := map[string]string{}
for key, val := range attribs {
if true { //needsEncoding(val) {
if needsEncoding(val) {
encAttribs["base64:"+key] = base64.StdEncoding.EncodeToString(val)
} else {
encAttribs[key] = string(val)
Expand Down

0 comments on commit 90771c7

Please sign in to comment.