@colijnit/transactionapi 1.1.150 → 1.1.151
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/transaction.js +1 -1
- package/package.json +1 -1
package/build/transaction.js
CHANGED
|
@@ -804,7 +804,7 @@ class Transaction {
|
|
|
804
804
|
return this.transaction.getTransactionMarginInfo(transactionId, showLoader);
|
|
805
805
|
}
|
|
806
806
|
static createConnector(isPublicSession, sessionExists) {
|
|
807
|
-
if (isPublicSession || sessionExists) {
|
|
807
|
+
if (!isPublicSession || sessionExists) {
|
|
808
808
|
return new transaction_auth_1.TransactionAuth();
|
|
809
809
|
}
|
|
810
810
|
return new transaction_public_1.TransactionPublic();
|