Clean up remaining debug log messages
This commit is contained in:
parent
d3297a448e
commit
a481376633
@ -748,7 +748,6 @@ export class RoomConnection implements RoomConnection {
|
|||||||
if (!this.userId) {
|
if (!this.userId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("Emitting follow request");
|
|
||||||
const message = new FollowRequestMessage();
|
const message = new FollowRequestMessage();
|
||||||
message.setLeader(this.userId);
|
message.setLeader(this.userId);
|
||||||
const clientToServerMessage = new ClientToServerMessage();
|
const clientToServerMessage = new ClientToServerMessage();
|
||||||
@ -760,7 +759,6 @@ export class RoomConnection implements RoomConnection {
|
|||||||
if (!this.userId) {
|
if (!this.userId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("Emitting follow confirmation");
|
|
||||||
const message = new FollowConfirmationMessage();
|
const message = new FollowConfirmationMessage();
|
||||||
message.setLeader(get(followUsersStore)[0]);
|
message.setLeader(get(followUsersStore)[0]);
|
||||||
message.setFollower(this.userId);
|
message.setFollower(this.userId);
|
||||||
@ -775,7 +773,6 @@ export class RoomConnection implements RoomConnection {
|
|||||||
if (!this.userId || (isLeader && !hasFollowers)) {
|
if (!this.userId || (isLeader && !hasFollowers)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("Emitting follow abort");
|
|
||||||
const message = new FollowAbortMessage();
|
const message = new FollowAbortMessage();
|
||||||
message.setLeader(isLeader ? this.userId : get(followUsersStore)[0]);
|
message.setLeader(isLeader ? this.userId : get(followUsersStore)[0]);
|
||||||
message.setFollower(isLeader ? 0 : this.userId);
|
message.setFollower(isLeader ? 0 : this.userId);
|
||||||
|
Loading…
Reference in New Issue
Block a user