Skip to content

Commit

Permalink
- allow both old and new format for aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed May 15, 2022
1 parent 700173d commit ce06f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ce06f29

Please sign in to comment.