Skip to content

Commit

Permalink
Fix databaseProvider parameter of thanks page url
Browse files Browse the repository at this point in the history
  • Loading branch information
yekalkan committed Dec 24, 2020
1 parent b392c4e commit a5cc337
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ public async Task ExecuteAsync(CommandLineArgs commandLineArgs)
private void OpenThanksPage(UiFramework uiFramework, DatabaseProvider databaseProvider, bool tiered, bool commercial)
{
uiFramework = uiFramework == UiFramework.NotSpecified || uiFramework == UiFramework.None ? UiFramework.Mvc : uiFramework;
databaseProvider = databaseProvider == DatabaseProvider.NotSpecified ? DatabaseProvider.EntityFrameworkCore : databaseProvider;

var urlPrefix = commercial ? "commercial" : "www";
var tieredYesNo = tiered ? "yes" : "no";
Expand Down

0 comments on commit a5cc337

Please sign in to comment.