Merge remote-tracking branch 'origin/chat' into chat

This commit is contained in:
DJ2LS 2023-03-22 13:52:45 +01:00
commit e686e890b5

View file

@ -2020,7 +2020,7 @@ function getSetUserSharedFolder(selected_callsign) {
function getSetUserInformation(selected_callsign) {
//Get user information
console.log("get set user information:" + selected_callsign)
console.log("get set user information:" + selected_callsign);
if (
selected_callsign == "" ||
@ -2040,7 +2040,7 @@ function getSetUserInformation(selected_callsign) {
// image
if (typeof data.user_info_image !== "undefined") {
try {
console.log("try checking for image if base64 data")
console.log("try checking for image if base64 data");
// determine if we have a base64 encoded image
console.log(data.user_info_image.split("data:image/png;base64,")[1]);
atob(data.user_info_image.split("data:image/png;base64,")[1]);