Fix type mismatch warning.

This commit is contained in:
FireMasterK 2021-04-24 00:21:25 +05:30
parent d31c391ab6
commit c26bf4f6fd
No known key found for this signature in database
GPG Key ID: 8DFF5DD33E93DB58

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",
};