From 0949b3382e64939899089c9cb75e30cb230167d2 Mon Sep 17 00:00:00 2001 From: New Future Date: Sat, 19 Apr 2025 19:34:56 +0000 Subject: [PATCH] fix typos --- alist-web | 1 + drivers/azure_blob/driver.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 160000 alist-web diff --git a/alist-web b/alist-web new file mode 160000 index 00000000..f72324a2 --- /dev/null +++ b/alist-web @@ -0,0 +1 @@ +Subproject commit f72324a29d8a193be6c522f73fc9c168e450260c diff --git a/drivers/azure_blob/driver.go b/drivers/azure_blob/driver.go index 04bef6e7..8131894f 100644 --- a/drivers/azure_blob/driver.go +++ b/drivers/azure_blob/driver.go @@ -296,7 +296,7 @@ func (d *AzureBlob) Put(ctx context.Context, dstDir model.Obj, stream model.File // Set content MD5 hash if available base64MD5 := stream.GetHash().GetHash(utils.MD5) if base64MD5 != "" { - // covert base64 to hex byte + // convert base64 to hex byte md5, err := base64.StdEncoding.DecodeString(base64MD5) if err == nil && len(md5) == 16 { options.HTTPHeaders.BlobContentMD5 = md5