Skip to content

Commit 9fdeb9e

Browse files
author
Alec Papierniak
committed
Checking if exponent is not null prior to assignment
1 parent 89e05ee commit 9fdeb9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MvcCodeFlowClientManual/Controllers/HomeController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public async Task<ActionResult> Index()
8484
//Mod
8585
AppController.mod = key.N;
8686
}
87-
if (key.N != null)
87+
if (key.E != null)
8888
{
8989
//Exponent
9090
AppController.expo = key.E;

0 commit comments

Comments
 (0)