Skip to content

Commit 1f596d3

Browse files
Fixed bug in casing for AnalyserOptions.
1 parent c9779f0 commit 1f596d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/KristofferStrube.Blazor.WebAudio/Options/AnalyserOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ public class AnalyserOptions : AudioNodeOptions
2929
/// <summary>
3030
/// The desired initial smoothing constant for the FFT analysis.
3131
/// </summary>
32-
[JsonPropertyName("SmoothingTimeConstant")]
32+
[JsonPropertyName("smoothingTimeConstant")]
3333
public double SmoothingTimeConstant { get; set; } = 0.8;
3434
}

0 commit comments

Comments
 (0)