Browse Source

Catch audio error

master
Eduard Kuzmenko 2 years ago
parent
commit
4cdb647716
  1. 1
      src/components/audio.ts
  2. 4
      webpack.common.js

1
src/components/audio.ts

@ -178,6 +178,7 @@ function wrapVoiceMessage(audioEl: AudioElement) { @@ -178,6 +178,7 @@ function wrapVoiceMessage(audioEl: AudioElement) {
const setAnimation = () => {
animateSingle(() => {
if(!audio) return false;
onTimeUpdate();
return !audio.paused;
}, audioEl);

4
webpack.common.js

@ -12,7 +12,7 @@ const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPl @@ -12,7 +12,7 @@ const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPl
const allowedIPs = ['127.0.0.1'];
const devMode = process.env.NODE_ENV !== 'production';
const useLocal = true;
const useLocalNotLocal = false;
const useLocalNotLocal = true;
if(devMode) {
console.log('DEVMODE IS ON!');
@ -37,7 +37,7 @@ const opts = { @@ -37,7 +37,7 @@ const opts = {
};
const domain = 'yourdomain.com';
const localIp = '192.168.93.183';
const localIp = '10.17.0.210';
const middleware = (req, res, next) => {
let IP = '';

Loading…
Cancel
Save