Skip to content

Commit

Permalink
Correcting: #137
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Feb 27, 2023
1 parent 647a81a commit 6620fdb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ If activated so by every command (no matter if the request came via state or sen
-->

## Changelog
### **WORK IN PROGRESS**
* (bluefox) Corrected link from admin

### 3.0.1 (2023-02-21)
* (bluefox) Corrected many GUI errors

Expand Down
2 changes: 1 addition & 1 deletion io-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"eraseOnUpload": true,
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.text2command/master/admin/text2command.png",
"localLink": "/adapter/text2command/tab.html",
"localLink": "/adapter/text2command/tab.html?instance=%instance%",
"type": "logic",
"noConfig": true,
"compact": true,
Expand Down
2 changes: 1 addition & 1 deletion src/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class App extends GenericApp {
.then(obj => {
if (JSON.stringify(obj.native) !== JSON.stringify(config)) {
obj.native = config;
return this.socket.setObject(`system.adapter.${this.adapterName}.${this.instance}`, obj)
return this.socket.setObject(obj._id, obj)
.then(() => true);
}

Expand Down

0 comments on commit 6620fdb

Please sign in to comment.