Mahdi

Results 7 issues of Mahdi

In this line: `hasDecimalPoint = s.toString().contains(decimalFormatSymbols.decimalSeparator.toString())` It will check Persian, Arabic or any language specific decimals, but if developer used numeric keyboard decimal char will be "," or ".". So...

wontfix

**Describe the bug** Our users encountered multiple crashes stemming from a timeout issue in a library. The error message indicates a publish request timeout, specifically noting "Timed out waiting for...

bug

**Describe the bug** Encountered a runtime issue leading to a ClassNotFoundException while executing Kotlin code related to a WalletConnect operation. This error suggests a problem with dynamic class resolution, impacting...

bug

**Describe the bug** On some users we got this exception: ``` java.lang.Throwable: Publish request timed out: Timed out waiting for 10000 ms at com.walletconnect.foundation.network.BaseRelayClient$observePublishResult$1.invokeSuspend(BaseRelayClient.kt:114) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.internal.ScopeCoroutine.afterResume(Scopes.kt:32) at kotlinx.coroutines.AbstractCoroutine.resumeWith(AbstractCoroutine.kt:102)...

bug

**Describe the bug** This crash happened on some users and we catch it from bug snag. Not sure how to reproduce it. **SDK Version** - Client: Android 13 - SDK:...

bug

**Describe the bug** When call approveSession method ``` Web3Wallet.approveSession(approveProposal, onError = { error -> Timber.i("ApproveSession error $error") callbacks?.onFailure(error.throwable) ``` I'm getting this on new version: ``` java.lang.NoSuchMethodError: No direct method...

bug

Hi I have an issue when convert live data to flow like: ``` fun foo( ): Flow = bar().asFlow() .map { -> } ``` ``` foo().test{ val result = awaitItem()...