Skip to content

Commit

Permalink
Added Twitter support
Browse files Browse the repository at this point in the history
  • Loading branch information
EngstromJimmy committed Aug 27, 2023
1 parent d9e2e9c commit 4b89b00
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion NextTechEvent/NextTechEvent.Data/Conference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,14 @@ public string GetLocation()
}
else
{
result = "N/A";
if (!string.IsNullOrEmpty(Venue))
{
result = Venue;
}
else
{
result = "N/A";
}
}
}
return result;
Expand Down

0 comments on commit 4b89b00

Please sign in to comment.