mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
Update initgui.js
This commit is contained in:
parent
2d4f5778a2
commit
88ce871601
@ -228,17 +228,15 @@ window.initgui = async function(options){
|
||||
"method": "POST",
|
||||
}).then(response => response.json())
|
||||
.then(async data => {
|
||||
if(data.success){
|
||||
if(data.email && data.email !== window.user.email){
|
||||
UIAlert({
|
||||
message: 'You are not authorized to view this link.'
|
||||
});
|
||||
}else{
|
||||
UIAlert({
|
||||
type: 'success',
|
||||
message: 'You are authorized to view this link.'
|
||||
});
|
||||
}
|
||||
if(data.email && data.email !== window.user.email){
|
||||
UIAlert({
|
||||
message: 'You are not authorized to view this link.'
|
||||
});
|
||||
}else{
|
||||
UIAlert({
|
||||
type: 'success',
|
||||
message: 'You are authorized to view this link.'
|
||||
});
|
||||
}
|
||||
}).catch(error => {
|
||||
console.error('Error:', error);
|
||||
|
Loading…
Reference in New Issue
Block a user