mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-30 19:35:26 +01:00 
			
		
		
		
	Fix error with profileMode imageUrl on Windows devices
when imageUrl was set with external link resources.Get throws an error
Ref: 22ef5da20d
fixes: #1019
			
			
This commit is contained in:
		| @@ -2,7 +2,10 @@ | |||||||
|     {{- with site.Params.profileMode }} |     {{- with site.Params.profileMode }} | ||||||
|     <div class="profile_inner"> |     <div class="profile_inner"> | ||||||
|         {{- if .imageUrl -}} |         {{- if .imageUrl -}} | ||||||
|         {{- $img := resources.Get .imageUrl }} |         {{- $img := "" }} | ||||||
|  |         {{- if not (urls.Parse .imageUrl).IsAbs }} | ||||||
|  |             {{- $img = resources.Get .imageUrl }} | ||||||
|  |         {{- end }} | ||||||
|         {{- if $img }} |         {{- if $img }} | ||||||
|             {{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}} |             {{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}} | ||||||
|             {{- if hugo.IsExtended -}} |             {{- if hugo.IsExtended -}} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Aditya Telange
					Aditya Telange