| ... | ... | @@ -1375,7 +1375,7 @@ pub const basic_authorization = struct { |
| 1375 | 1375 | var buf: [max_user_len + 1 + max_password_len]u8 = undefined; |
| 1376 | 1376 | var w: Writer = .fixed(&buf); |
| 1377 | 1377 | const user: Uri.Component = uri.user orelse .empty; |
| 1378 | | const password: Uri.Component = uri.user orelse .empty; |
| 1378 | const password: Uri.Component = uri.password orelse .empty; |
| 1379 | 1379 | user.formatUser(&w) catch unreachable; |
| 1380 | 1380 | w.writeByte(':') catch unreachable; |
| 1381 | 1381 | password.formatPassword(&w) catch unreachable; |