Skip to content

Commit

Permalink
Merge pull request #123 from sheibeck/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
sheibeck authored Apr 29, 2021
2 parents 400ea93 + 386c8d1 commit 5ecba5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fatecharactersheet",
"version": "2.4.5",
"version": "2.4.6",
"description": "Website for managing all things for Fate-based roleplaying games.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/assets/js/peerService.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class PeerService {
peerId = this.GeneratePeerId();
}
return new Peer(peerId, {
debug: 3,
debug: 1,
secure: true,
host: "fcs-peer-server.herokuapp.com",
port: 443
Expand Down
3 changes: 2 additions & 1 deletion src/pages/SceneDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,8 @@ ${msg}`;
if (this.isHost) {
if (this.scene.gamePeerId !== e.detail.peerid)
{
this.scene.gamePeerId = e.detail.peerid;
this.scene.gamePeerId = e.detail.peerid;
this.saveScene(true);
}
}
},
Expand Down

0 comments on commit 5ecba5d

Please sign in to comment.