"Visitor" user id is null

Since a few hours ago, the “Visitor” user id is null instead of the id it was provided before. I’ve tested it also on a blank new site and it still reproduces.

Please help me ASAP, I’m using that id for my website and it can’t work without it.

Can you please share some code?

import wixUsers from ‘wix-users’;
let user = wixUsers.currentUser;
let userId = user.id;
console.log(userId);

Itamar - fix was deployed. should be online up to15 minutes

Hello I do not know if it is also my problem but when I try to filter a dataset by a visitor userid I cannot get it.
the developer console always trigger an undefined message when i set a console.log on currentUser.id…
I’m becoming crazy I’m on it since 3 days now !!! aaargh
Here is the PAGE code can someone check if i’m setting something wrong :

import wixData from ‘wix-data’;
import wixUsers from ‘wix-users’;

$w.onReady(() => {
$w(‘#dataset1’).onReady( async () => {

let currentuser = await wixUsers.currentUser;
let userid = await currentuser.id;
console.log(userid);
console.log($w(‘#dataset1’).getCurrentItem());
$w(“#dataset1”).setFilter(wixData.filter()
.eq(“_owner”, userid)
.eq(“title”, “TEMPORARY”)

        ); 

}) 

});

I know the filter is working because it is filtering the repeater with correct title but it does not use the current user id :frowning: I have also tried without async and await but nothing changed :frowning: