sillytavern 1.8.2 → 1.8.3

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/package.json CHANGED
@@ -49,7 +49,7 @@
49
49
  "type": "git",
50
50
  "url": "https://github.com/SillyTavern/SillyTavern.git"
51
51
  },
52
- "version": "1.8.2",
52
+ "version": "1.8.3",
53
53
  "scripts": {
54
54
  "start": "node server.js",
55
55
  "pkg": "pkg --compress Gzip --no-bytecode --public ."
@@ -1234,7 +1234,7 @@ function filterGroupMembers() {
1234
1234
  $("#rm_group_add_members .group_member").removeClass('hiddenBySearch');
1235
1235
  } else {
1236
1236
  $("#rm_group_add_members .group_member").each(function () {
1237
- const isValidSearch = $(this).children(".ch_name").text().toLowerCase().includes(searchValue);
1237
+ const isValidSearch = $(this).find(".ch_name").text().toLowerCase().includes(searchValue);
1238
1238
  $(this).toggleClass('hiddenBySearch', !isValidSearch);
1239
1239
  });
1240
1240
  }
package/src/poe-client.js CHANGED
@@ -312,7 +312,7 @@ function logObjectStructure(obj, indent = 0, depth = Infinity) {
312
312
  class Client {
313
313
  gql_url = "https://poe.com/api/gql_POST";
314
314
  gql_recv_url = "https://poe.com/api/receive_POST";
315
- home_url = "https://poe.com";
315
+ home_url = "https://poe.com/Sage";
316
316
  settings_url = "https://poe.com/api/settings";
317
317
 
318
318
  formkey = "";