hey thanks for adding the placeholder theres an issue i fixed in the javascript but its the api's fault , its relating with the current conditions icon , at night the api's current icon does not change from day to night for example "partlycloudy" does not change to "nt_partlycloudy" and its for all icons its just doesnt put the nt_ at night and at all so the emulator picks up the day icons 24/7 (and keep in mind the api only did this to the current icons) so i fixed that by doing this and it works well for me , add this to the debug info and afterwords put 2 brackets instead of 1 so it clears the error and dont worry about the forecast icons and outlook icons the api has it completely fine its only the current that has the issue
var currentTime = new Date();
if(currentTime.getHours() > 5 && currentTime.getHours() < 19){
document.getElementById('ccicon').src = 'assets/icons/conditions/' + currentIcon +'.svg';
}else{ document.getElementById('ccicon').src = 'assets/icons/conditions/nt_' + currentIcon +'.svg';
}
}