Skip to content

Commit

Permalink
use base64UrlEncode instead of base64Encode (#3609)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Nov 8, 2023
1 parent 766cf18 commit 2550caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_daemon/lib/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ String daemonWorkspace(String workingDirectory) {
var segments = [Directory.systemTemp.path];
if (_username.isNotEmpty) segments.add(_username);
final workingDirHash =
base64Encode(md5.convert(workingDirectory.codeUnits).bytes);
base64UrlEncode(md5.convert(workingDirectory.codeUnits).bytes);
segments.add(workingDirHash);
return p.joinAll(segments);
}
Expand Down

0 comments on commit 2550caf

Please sign in to comment.