mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-16 11:13:23 +00:00
Change string concats to template literals
This commit is contained in:
@@ -27,7 +27,7 @@ exports.data = function (device, message) {
|
||||
var i = 0;
|
||||
while (arr[i][arr[i].length - 1] != '"') {
|
||||
i++;
|
||||
device.data.showName += arr[i] + ' ';
|
||||
device.data.showName += `${arr[i]} `;
|
||||
}
|
||||
device.data.showName = device.data.showName.substring(
|
||||
1,
|
||||
|
||||
Reference in New Issue
Block a user