Aidan Follestad

Results 12 issues of Aidan Follestad

```kotlin var urlConn = connectURL(url) urlConn.headerFields var finalResult = urlConn.url.toString() urlConn = connectURL(finalResult) urlConn.headerFields ``` If there is a reason for this, there should be comments

```kotlin getCode(url) .subscribeOn(Schedulers.io()) .subscribe(...) ``` This subscription should be managed, otherwise you could end up with a leak if this operation takes longer than expected in real use.