1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

MCREC Player and Indexer now support indexes at the end of the file.

This commit is contained in:
Ylian Saint-Hilaire 2020-02-12 16:57:05 -08:00
parent 0d4754fba2
commit 4ce64c06e9
3 changed files with 90 additions and 33 deletions

View file

@ -10978,6 +10978,7 @@
//
// Converts string to UTF8 byte array, polyfill for IE.
// Following method is code from Mozilla: https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder
if (typeof TextEncoder === 'undefined') {
window.TextEncoder=function TextEncoder(){};
TextEncoder.prototype.encode = function encode(str) {