@quenty/friendutils 12.20.1 → 12.20.2-canary.d6d4f6f.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [12.20.2-canary.d6d4f6f.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/friendutils@12.20.1...@quenty/friendutils@12.20.2-canary.d6d4f6f.0) (2025-12-08)
7
+
8
+ **Note:** Version bump only for package @quenty/friendutils
9
+
10
+
11
+
12
+
13
+
6
14
  ## [12.20.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/friendutils@12.20.0...@quenty/friendutils@12.20.1) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/friendutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/friendutils",
3
- "version": "12.20.1",
3
+ "version": "12.20.2-canary.d6d4f6f.0",
4
4
  "description": "Utlity functions to help find friends of a user. Also contains utility to make testing in studio easier.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,14 +25,14 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^14.20.1",
29
- "@quenty/loader": "^10.9.0",
30
- "@quenty/maid": "^3.5.0",
31
- "@quenty/promise": "^10.12.0",
32
- "@quenty/rx": "^13.20.0"
28
+ "@quenty/brio": "14.20.1",
29
+ "@quenty/loader": "10.9.0",
30
+ "@quenty/maid": "3.5.0",
31
+ "@quenty/promise": "10.12.0",
32
+ "@quenty/rx": "13.20.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
37
+ "gitHead": "d6d4f6fbab7a3a7dd504add72eda9addbc2e9976"
38
38
  }
@@ -58,8 +58,9 @@ function RxFriendUtils.observeFriendsInServerAsBrios(player: Player?): Observabl
58
58
 
59
59
  local function handleNewPlayerAsync(otherPlayer: Player)
60
60
  if otherPlayer ~= player then
61
- local ok, isFriendsWith = pcall(function()
62
- return player:IsFriendsWith(otherPlayer.UserId)
61
+ local isFriendsWith = false
62
+ local ok = pcall(function()
63
+ isFriendsWith = player:IsFriendsWithAsync(otherPlayer.UserId)
63
64
  end)
64
65
  if not ok then
65
66
  warn(