summaryrefslogtreecommitdiff
path: root/src/lib/exceptions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/exceptions.cc')
-rw-r--r--src/lib/exceptions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/exceptions.cc b/src/lib/exceptions.cc
index 7e98a2b57..66db9fda7 100644
--- a/src/lib/exceptions.cc
+++ b/src/lib/exceptions.cc
@@ -116,8 +116,8 @@ KDMAsContentError::KDMAsContentError ()
}
-NetworkError::NetworkError (string s, string d)
- : runtime_error (String::compose("%1 (%2)", s, d))
+NetworkError::NetworkError (string s, optional<string> d)
+ : runtime_error (String::compose("%1%2", s, d ? String::compose(" (%1)", *d) : ""))
, _summary (s)
, _detail (d)
{