Skip to content

Commit

Permalink
Merge pull request #2 from Nordic-Dev/master
Browse files Browse the repository at this point in the history
Checking if exponent is not null prior to assignment
  • Loading branch information
nimisha84 committed Sep 7, 2018
2 parents 89e05ee + 9fdeb9e commit 2448f19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MvcCodeFlowClientManual/Controllers/HomeController.cs
Expand Up @@ -84,7 +84,7 @@ public async Task<ActionResult> Index()
//Mod
AppController.mod = key.N;
}
if (key.N != null)
if (key.E != null)
{
//Exponent
AppController.expo = key.E;
Expand Down

0 comments on commit 2448f19

Please sign in to comment.