added quality selection in context menu and removed the quality modal, except for one case; translated cut, copy, ecc in italian

This commit is contained in:
Roberto Tonino
2020-08-11 21:12:47 +02:00
parent 830f28b795
commit 76f354e3de
14 changed files with 210 additions and 191 deletions

View File

@@ -1,9 +1,9 @@
import { socket } from '@/utils/socket'
function sendAddToQueue(url, bitrate = null) {
if (url != '') {
socket.emit('addToQueue', { url: url, bitrate: bitrate }, () => {})
}
if (!url) return
socket.emit('addToQueue', { url, bitrate }, () => {})
}
export default {