Skip to content

Commit

Permalink
base64 encode etag in mem_storage (#8116)
Browse files Browse the repository at this point in the history
  • Loading branch information
szakarias authored Oct 7, 2024
1 parent e987b4b commit c47dca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/fake_gcloud/lib/mem_storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class _File implements ObjectInfo {
Uri get downloadLink => Uri(scheme: 'gs', host: bucketName, path: name);

@override
String get etag => md5Hash.toString();
String get etag => base64Encode(md5Hash);

@override
ObjectGeneration get generation {
Expand Down

0 comments on commit c47dca9

Please sign in to comment.