Fix type mismatch warning.

This commit is contained in:
FireMasterK
2021-04-24 00:21:25 +05:30
parent d31c391ab6
commit c26bf4f6fd

View File

@@ -1,4 +1,4 @@
export default {
BASE_URL: localStorage.getItem("instance") || "https://pipedapi.kavin.rocks",
AUTO_PLAY: localStorage.getItem("autoplay") || false,
AUTO_PLAY: localStorage.getItem("autoplay") === "true",
};