If Ped is Playing a Facial Animation?

Is there any native to check If Ped is Playing a Facial Animation ?

Tried this but no success

local player = GetPlayerPed(-1)

    PlayFacialAnim(player, "mic_chatter", dict1);

    Citizen.Wait(1)

    Citizen.CreateThread(function()

        if IsEntityPlayingAnim(player, dict1, "mic_chatter", 3) then

            print('yes')

        else

            print('no')

        end

    end)

This plays the facial animation but returns ‘no’