From a4962b4fe6205b0059738d0343c13ba7c2f199fa Mon Sep 17 00:00:00 2001
From: YuSanka <yusanka@gmail.com>
Date: Tue, 20 Oct 2020 17:23:57 +0200
Subject: [PATCH] Fixed a build

---
 src/slic3r/Utils/Http.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/slic3r/Utils/Http.cpp b/src/slic3r/Utils/Http.cpp
index 7674ee76e..44939bf07 100644
--- a/src/slic3r/Utils/Http.cpp
+++ b/src/slic3r/Utils/Http.cpp
@@ -395,7 +395,7 @@ Http::Http(Http &&other) : p(std::move(other.p)) {}
 
 Http::~Http()
 {
-    assert(! putFile);
+    assert(! p->putFile);
 	if (p && p->io_thread.joinable()) {
 		p->io_thread.detach();
 	}