notherbase-fs 3.0.0 → 3.0.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notherbase-fs",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Functions to help make developing for NotherBase easier.",
5
5
  "exports": "./notherbase-fs.js",
6
6
  "scripts": {
@@ -148,7 +148,7 @@ class Base {
148
148
  let $email = $(".content#account .setting#email p");
149
149
  let $emailInput = $(".content#account .edit#email input");
150
150
 
151
- let response = await Base.commune("/s/user/changeEmail", { email: this.$emailInput.val() });
151
+ let response = await Base.commune("/s/user/changeEmail", { email: $emailInput.val() });
152
152
 
153
153
  if (response.status === "success") {
154
154
  $email.text($emailInput.val());