diff options
Diffstat (limited to 'src/formatstring.cpp')
-rw-r--r-- | src/formatstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formatstring.cpp b/src/formatstring.cpp index a2ed4218..579bcba0 100644 --- a/src/formatstring.cpp +++ b/src/formatstring.cpp @@ -11,7 +11,7 @@ namespace newsbeuter { void fmtstr_formatter::register_fmt(char f, const std::string& value) { GetLogger().log(LOG_DEBUG, "fmtstr_formatter::register_fmt: char = %c value = %s", f, value.c_str()); - fmts[f] = utils::str2wstr(value); + fmts[f] = utils::utf8str2wstr(value); GetLogger().log(LOG_DEBUG, "fmtstr_formatter::register_fmt: char = %c done", f); } |