Fixed chat symbols bug

Короче баг был, который при отсылании миллиарда символов чат схлопывал.
Бл, Рафаелло постоянно просил переделывать, наконец то сделал то, что он принял и залил, всем спасибо за внимание
This commit is contained in:
Swino4ka
2024-04-17 18:19:57 +02:00
parent 327dd6c7e9
commit 1df75ba3ee
2 changed files with 75 additions and 38 deletions

View File

@@ -61,7 +61,7 @@
<section class="crash-game__players" v-if="crashObject && crashObject.Players">
<div class="crash-game-players__content">
<div class="crash__history">
<div class="crash-history__component"> <h2>{{ game.winX }}</h2> </div>
<div class="crash-history__component"> <h2></h2> </div>
<div class="crash-history__component"></div>
<div class="crash-history__component"></div>
<div class="crash-history__component"></div>
@@ -121,7 +121,6 @@ export default {
components: { HeaderComponent, AsideBarComponent, ChatComponent, CrashGraphComponent },
data() {
return {
winX,
SaperNumbers,
clickedBtn: null,
ErrorClick: false,
@@ -242,14 +241,6 @@ export default {
}
},
},
async created() {
if (GetCookie('AUTHTOKEN') && GetCookie('SearchToken')) {
await GetCurrentMoney(GetCookie('AUTHTOKEN'), GetCookie('SearchToken'))
.then((response) => {
this.balance = response.currentMoney
})
}
},
props: ["payments"],
async created() {
this.CHistory = await CrashHistory();