Skip to content

Commit 037d7de

Browse files
committed
fixed to work with netstandard2.0
1 parent 62887e7 commit 037d7de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Supabase/Client.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ internal Dictionary<string, string> GetAuthHeaders()
274274

275275
// Add custom headers from options
276276
// This will overwrite any existing headers with the same key, not sure if that's the desired behavior
277-
foreach (var (key, value) in _options.Headers)
277+
foreach (var kvp in _options.Headers)
278278
{
279-
headers[key] = value;
279+
headers[kvp.Key] = kvp.Value;
280280
}
281281

282282
return headers;

0 commit comments

Comments
 (0)