diff --git a/lib/remote/apilistener.cpp b/lib/remote/apilistener.cpp index c4422108f..f1288dcaf 100644 --- a/lib/remote/apilistener.cpp +++ b/lib/remote/apilistener.cpp @@ -692,12 +692,14 @@ void ApiListener::LogGlobHandler(std::vector& files, const String& file) { String name = Utility::BaseName(file); + if (name == "current") + return; + int ts; try { ts = Convert::ToLong(name); - } - catch (const std::exception&) { + } catch (const std::exception&) { return; }