From ce06f299ebc546d8314de5b0c28ee83adf2adb31 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Sun, 15 May 2022 16:42:00 -0400 Subject: [PATCH] - allow both old and new format for aliases --- config-converter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-converter.cpp b/config-converter.cpp index bd9270f..434e00a 100644 --- a/config-converter.cpp +++ b/config-converter.cpp @@ -183,7 +183,7 @@ int main(int argc, char** argv) case HT_ALIAS: if (!var.compare("Name")) aliasname = value; - if (!var.compare("Command")) + if (!var.compare("Command") || !var.compare("Value")) keyconf << streamcommand << aliasname << " " << quote << value << quote << endl; break; case HT_VERSION: