Skip to content

Commit

Permalink
small changes to trigger formatting on my fork
Browse files Browse the repository at this point in the history
  • Loading branch information
degenone committed Sep 13, 2023
1 parent 6bc3924 commit f0227a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/TagzApp.Providers.TwitchChat/StartTwitchChat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ namespace TagzApp.Providers.TwitchChat;
public class StartTwitchChat : IConfigureProvider
{

private const string ConfigurationKey = "providers:twitchchat";
private const string _ConfigurationKey = "providers:twitchchat";

public IServiceCollection RegisterServices(IServiceCollection services, IConfiguration configuration)
{

IConfiguration config = null;
try
{
config = configuration.GetSection(ConfigurationKey);
config = configuration.GetSection(_ConfigurationKey);
services.Configure<TwitchChatConfiguration>(config);
}
catch (Exception ex)
{

// Was not able to configure the provider
throw new InvalidConfigurationException(ex.Message, ConfigurationKey);
throw new InvalidConfigurationException(ex.Message, _ConfigurationKey);

}

Expand Down
2 changes: 1 addition & 1 deletion src/TagzApp.Web/wwwroot/js/masonry.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

window.Masonry = m;

})();
})();

0 comments on commit f0227a4

Please sign in to comment.