missed a comma in network helper

This commit is contained in:
Jays2Kings 2022-05-03 18:02:24 -04:00
parent a279053ac5
commit 6af327d0d9

View file

@ -39,7 +39,7 @@ class NetworkHelper(val context: Context) {
.maxContentLength(250000L) .maxContentLength(250000L)
.redactHeaders(emptySet()) .redactHeaders(emptySet())
.alwaysReadResponseBody(false) .alwaysReadResponseBody(false)
.build() .build(),
) )
} }