Skip to content

Commit 9fc5a2e

Browse files
committed
also fix names when initializing HTTP header
1 parent 0fe34b4 commit 9fc5a2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extension/httpfs/httpfs.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,9 @@ HTTPFileHandle::HTTPFileHandle(FileSystem &fs, const OpenFileInfo &file, FileOpe
296296
if (fs_entry != info.end()) {
297297
length = fs_entry->second.GetValue<uint64_t>();
298298
}
299-
auto direct_complete_download_entry = info.find("direct_complete_download");
300-
if (direct_complete_download_entry != info.end()) {
301-
force_full_download = direct_complete_download_entry->second.GetValue<bool>();
299+
auto force_full_download_entry = info.find("force_full_download");
300+
if (force_full_download_entry != info.end()) {
301+
force_full_download = force_full_download_entry->second.GetValue<bool>();
302302
}
303303
if (lm_entry != info.end() && etag_entry != info.end() && fs_entry != info.end()) {
304304
// we found all relevant entries (last_modified, etag and file size)

0 commit comments

Comments
 (0)