From 267ec9ccccdabef15832089ca3e0503e30ada5e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Thu, 7 Mar 2019 16:02:49 +0200 Subject: [PATCH] Fix filter serialization Filters were serialized with commas as separators instead of pipes. --- server/core/service.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core/service.cc b/server/core/service.cc index 4ca6afd80..e73dbd5b9 100644 --- a/server/core/service.cc +++ b/server/core/service.cc @@ -1850,7 +1850,7 @@ bool Service::dump_config(const char* filename) const for (const auto& f : m_filters) { dprintf(file, "%s%s", sep, f->name.c_str()); - sep = ","; + sep = "|"; } dprintf(file, "\n");