mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-10-31 04:32:01 +00:00 
			
		
		
		
	Merge pull request #1674 from thecashewtrader/fix-typo
Fix typo: defaultLangage to defaultLanguage
This commit is contained in:
		| @@ -64,7 +64,7 @@ export default { | ||||
|         const App = this; | ||||
|  | ||||
|         (async function () { | ||||
|             const defaultLang = await App.defaultLangage; | ||||
|             const defaultLang = await App.defaultLanguage; | ||||
|             const locale = App.getPreferenceString("hl", defaultLang); | ||||
|             if (locale !== App.TimeAgoConfig.locale) { | ||||
|                 const localeTime = await import(`../node_modules/javascript-time-ago/locale/${locale}.json`) | ||||
|   | ||||
| @@ -506,7 +506,7 @@ export default { | ||||
|             this.minimizeRecommendations = this.getPreferenceBoolean("minimizeRecommendations", false); | ||||
|             this.watchHistory = this.getPreferenceBoolean("watchHistory", false); | ||||
|             this.searchHistory = this.getPreferenceBoolean("searchHistory", false); | ||||
|             this.selectedLanguage = this.getPreferenceString("hl", await this.defaultLangage); | ||||
|             this.selectedLanguage = this.getPreferenceString("hl", await this.defaultLanguage); | ||||
|             this.enabledCodecs = this.getPreferenceString("enabledCodecs", "vp9,avc").split(","); | ||||
|             this.disableLBRY = this.getPreferenceBoolean("disableLBRY", false); | ||||
|             this.proxyLBRY = this.getPreferenceBoolean("proxyLBRY", false); | ||||
| @@ -530,7 +530,7 @@ export default { | ||||
|                 if ( | ||||
|                     this.getPreferenceString("theme", "dark") !== this.selectedTheme || | ||||
|                     this.getPreferenceBoolean("watchHistory", false) != this.watchHistory || | ||||
|                     this.getPreferenceString("hl", await this.defaultLangage) !== this.selectedLanguage || | ||||
|                     this.getPreferenceString("hl", await this.defaultLanguage) !== this.selectedLanguage || | ||||
|                     this.getPreferenceString("enabledCodecs", "av1,vp9,avc") !== this.enabledCodecs.join(",") | ||||
|                 ) | ||||
|                     shouldReload = true; | ||||
|   | ||||
| @@ -237,7 +237,7 @@ const mixin = { | ||||
|                 return false; | ||||
|             } | ||||
|         }, | ||||
|         async defaultLangage() { | ||||
|         async defaultLanguage() { | ||||
|             const languages = window.navigator.languages; | ||||
|             for (let i = 0; i < languages.length; i++) { | ||||
|                 try { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Kavin
					Kavin