From 9860240e242857ef4730cdbd3c8fce53b928f584 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 30 Mar 2021 16:16:55 +0200 Subject: [PATCH] revert change, apparently this doesn't do it --- src/Http.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Http.cpp b/src/Http.cpp index 886e103..6f8a744 100644 --- a/src/Http.cpp +++ b/src/Http.cpp @@ -139,8 +139,5 @@ std::string Http::POST(const std::string& host, const std::string& target, const } catch (const std::exception& e) { error(e.what()); return "-1"; - } catch (const boost::system::system_error& e) { - error(e.what()); - return "-1"; } }