Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit e78455b

Browse files
committed
Update websocket imports in packet and protocol files
1 parent 070bf19 commit e78455b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "casty-proto",
3-
"version": "1.1.0",
3+
"version": "1.1.2",
44
"description": "This repository contains common protocol definitions for casty services around gRPC such as user, authentication, theater etc...",
55
"scripts": {
66
"compile": "pbjs -t static-module -w commonjs -o pbjs/proto.js protofiles/*.proto"

protocol/packet.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {proto} from "./../pbjs/websocket";
1+
import {proto} from "./../pbjs/ws.bundle";
22
import {Reader} from "protobufjs";
33

44
const EMsgMask = 2147483647;

protocol/protocol.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const ProtoMask = 0x80000000;
2-
import {proto} from "./../pbjs/websocket";
2+
import {proto} from "./../pbjs/ws.bundle";
33

44
function new_client_msg_protobuf(eMsg, type, body) {
55
if (eMsg == null){

0 commit comments

Comments
 (0)