Skip to content

Commit 33dab88

Browse files
committed
feat: uncomment duplex options
1 parent 9876e90 commit 33dab88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Storage/StorageFileApi.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ private async Task<string> UploadOrUpdate(string localPath, string supabasePath,
482482

483483
options.Headers?.ToList().ForEach(x => headers.Add(x.Key, x.Value));
484484

485-
// if (options.Duplex != null)
486-
// headers.Add("x-duplex", options.Duplex.ToLower());
485+
if (options.Duplex != null)
486+
headers.Add("x-duplex", options.Duplex.ToLower());
487487

488488
var progress = new Progress<float>();
489489

0 commit comments

Comments
 (0)