Andrew Collard
Andrew Collard
When using nicescroll it is really annoying to get all the demo projects. Other Bower projects don't do this, they only provide the files someone would need when using their...
This makes is pretty much useless when comparing telemetry events. The ISO string returned from this utility is only accurate to the second. https://github.com/microsoft/ApplicationInsights-PHP/blob/95407ee7978a729f9bad5e2469ff07aadfe6bbd3/ApplicationInsights/Channel/Telemetry_Channel.php#L161 And all start times should use...
This fixes #72.
From [ClientSecretValidator.cs](https://github.com/IdentityServer/IdentityServer3/blob/master/source/Core/Validation/ClientSecretValidator.cs#L64): ``` C# // load client var client = await _clients.FindClientByIdAsync(parsedSecret.Id); if (client == null) { await RaiseFailureEvent(parsedSecret.Id, "Unknown client"); Logger.Info("No client with that id found. aborting"); return fail;...