@onflow/util-actor
Advanced tools
Comparing version 1.3.2 to 1.3.3
# @onflow/util-actor | ||
## 1.3.3 | ||
### Patch Changes | ||
- [#1886](https://github.com/onflow/fcl-js/pull/1886) [`fe5e1b3d`](https://github.com/onflow/fcl-js/commit/fe5e1b3d330b7734740cceb9a873d1b680f28175) Thanks [@jribbink](https://github.com/jribbink)! - Fix broken util-actor when multiple versions are running at once | ||
## 1.3.2 | ||
@@ -4,0 +10,0 @@ |
@@ -100,3 +100,6 @@ 'use strict'; | ||
if (addr == null) { | ||
return String(++pid); | ||
while (FCL_REGISTRY[String(pid)]) { | ||
pid++; | ||
} | ||
return String(pid); | ||
} | ||
@@ -103,0 +106,0 @@ return String(addr); |
@@ -96,3 +96,6 @@ const mailbox = () => { | ||
if (addr == null) { | ||
return String(++pid); | ||
while (FCL_REGISTRY[String(pid)]) { | ||
pid++; | ||
} | ||
return String(pid); | ||
} | ||
@@ -99,0 +102,0 @@ return String(addr); |
@@ -102,3 +102,6 @@ (function (global, factory) { | ||
if (addr == null) { | ||
return String(++pid); | ||
while (FCL_REGISTRY[String(pid)]) { | ||
pid++; | ||
} | ||
return String(pid); | ||
} | ||
@@ -105,0 +108,0 @@ return String(addr); |
{ | ||
"name": "@onflow/util-actor", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "A mechanism for forcing order/transitions of scoped async state", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94398
813