You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a problem: when maven generate javascript api our parameters with int64 type have equals and incorrect index. Please fix it, as soon as possible please, it is very important for us.
In example serverEventDatetime parameter is int64.
this.Journal.prototype.marshal=function(){varsegs=[];if(this.serverEventDatetime){varseg=[4];// PROBLEM IN THIS LINE, MUST BE: var seg = [0];if(this.serverEventDatetime<0){seg[0]|=128;if(this.serverEventDatetime<Number.MIN_SAFE_INTEGER)fail('colfer: api/Journal field serverEventDatetime exceeds Number.MIN_SAFE_INTEGER');encodeVarint(seg,-this.serverEventDatetime);}else{if(this.serverEventDatetime>Number.MAX_SAFE_INTEGER)fail('colfer: api/Journal field serverEventDatetime exceeds Number.MAX_SAFE_INTEGER');encodeVarint(seg,this.serverEventDatetime);}segs.push(seg);}if(this.subsystemCode){varutf=encodeUTF8(this.subsystemCode);varseg=[1];encodeVarint(seg,utf.length);segs.push(seg);segs.push(utf)}if(this.code){varutf=encodeUTF8(this.code);varseg=[2];encodeVarint(seg,utf.length);segs.push(seg);segs.push(utf)}// ................................................................................
We have a problem: when maven generate javascript api our parameters with int64 type have equals and incorrect index. Please fix it, as soon as possible please, it is very important for us.
In example serverEventDatetime parameter is int64.
The text was updated successfully, but these errors were encountered: