diff --git a/src/views/newMap/display/newChat/chatContent.vue b/src/views/newMap/display/newChat/chatContent.vue
index 5af1a18ac..ef69211bb 100644
--- a/src/views/newMap/display/newChat/chatContent.vue
+++ b/src/views/newMap/display/newChat/chatContent.vue
@@ -29,7 +29,7 @@
@@ -60,7 +60,6 @@ export default {
return {
recordSending:false,
seconds:0,
- maxSeconds:59,
inter:null,
recorders: null,
microphone:null,
@@ -296,7 +295,7 @@ export default {
this.recordSending = true;
this.audioPlay = false;
this.inter = setInterval(() => {
- if (this.seconds < this.maxSeconds) {
+ if (this.seconds < 60) {
this.seconds++;
} else {
clearInterval(this.inter);