Shuffle and Repeat buttons stopped working...

Hi,
My shuffle and repeat buttons suddenly stopped working for Spotify.
This is the code for shuffle:
if application "Spotify" is running then
tell application "Spotify"
try
if shuffling is true then
return "enabled"
else
return "off"
end if
on error
return ""
end try
end tell
else
return ""
end if

This is the code for repeat:
if application "Spotify" is running then
tell application "Spotify"
try
if repeating is true then
return true
else
return false
end if
on error
return ""
end try
end tell
else
return ""
end if

Thanks