From 0ab8d4b073e438045d0e72edf679a4593c2c5efa Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 14 Dec 2016 18:25:23 +0000 Subject: [PATCH] Fix userlist errors producing an unhelpful message The parsing exception handler was producing a boost::too_many_args exception. --- src/gui/query/get_game_data_query.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/query/get_game_data_query.h b/src/gui/query/get_game_data_query.h index 3ece0957..52e2405a 100644 --- a/src/gui/query/get_game_data_query.h +++ b/src/gui/query/get_game_data_query.h @@ -101,7 +101,7 @@ private: "documentation, which is accessible through LOOT's main menu.\n\n" "You can also seek support on LOOT's forum thread, which is " "linked to on [LOOT's website](https://loot.github.io/)." - )) % e.what() % LootVersion::major % LootVersion::minor % LootVersion::patch).str())); + )) % e.what()).str())); } } }