diff --git a/src/slic3r/Utils/Repetier.cpp b/src/slic3r/Utils/Repetier.cpp index 0569d97fae..63f4384289 100644 --- a/src/slic3r/Utils/Repetier.cpp +++ b/src/slic3r/Utils/Repetier.cpp @@ -156,7 +156,7 @@ bool Repetier::upload(PrintHostUpload upload_data, ProgressFn prorgess_fn, Error bool Repetier::validate_version_text(const boost::optional &version_text) const { - return version_text ? boost::starts_with(*version_text, "Repetier") : true; + return version_text ? (!version_text->empty()) : true; } void Repetier::set_auth(Http &http) const