Skip to content

Commit fe4db60

Browse files
authored
Fixed app crash on disburse loan Click (#2334)
1 parent 82469ff commit fe4db60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/data/src/main/java/com/mifos/core/data/repositoryImp/LoanAccountDisbursementRepositoryImp.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ class LoanAccountDisbursementRepositoryImp @Inject constructor(private val dataM
3434
loanId: Int,
3535
loanDisbursement: LoanDisbursement?,
3636
): Observable<GenericResponse> {
37-
return disburseLoan(loanId, loanDisbursement)
37+
return dataManagerLoan.disburseLoan(loanId, loanDisbursement)
3838
}
3939
}

0 commit comments

Comments
 (0)