mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:45:25 +01:00 
			
		
		
		
	Fixed wrong migrate url error description. (#15010)
This commit is contained in:
		
							parent
							
								
									5bb544e3ae
								
							
						
					
					
						commit
						7019076f7f
					
				| @ -153,12 +153,12 @@ func MigratePost(ctx *context.Context) { | ||||
| 			case addrErr.IsURLError: | ||||
| 				ctx.RenderWithErr(ctx.Tr("form.url_error"), tpl, &form) | ||||
| 			case addrErr.IsPermissionDenied: | ||||
| 				if len(addrErr.PrivateNet) == 0 { | ||||
| 					ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied_private_ip"), tpl, &form) | ||||
| 				} else if !addrErr.LocalPath { | ||||
| 				if addrErr.LocalPath { | ||||
| 					ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), tpl, &form) | ||||
| 				} else if len(addrErr.PrivateNet) == 0 { | ||||
| 					ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied_blocked"), tpl, &form) | ||||
| 				} else { | ||||
| 					ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), tpl, &form) | ||||
| 					ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied_private_ip"), tpl, &form) | ||||
| 				} | ||||
| 			case addrErr.IsInvalidPath: | ||||
| 				ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), tpl, &form) | ||||
|  | ||||
| @ -178,12 +178,12 @@ func SettingsPost(ctx *context.Context) { | ||||
| 				case addrErr.IsURLError: | ||||
| 					ctx.RenderWithErr(ctx.Tr("form.url_error"), tplSettingsOptions, &form) | ||||
| 				case addrErr.IsPermissionDenied: | ||||
| 					if len(addrErr.PrivateNet) == 0 { | ||||
| 						ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied_private_ip"), tplSettingsOptions, &form) | ||||
| 					} else if !addrErr.LocalPath { | ||||
| 					if addrErr.LocalPath { | ||||
| 						ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), tplSettingsOptions, &form) | ||||
| 					} else if len(addrErr.PrivateNet) == 0 { | ||||
| 						ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied_blocked"), tplSettingsOptions, &form) | ||||
| 					} else { | ||||
| 						ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), tplSettingsOptions, &form) | ||||
| 						ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied_private_ip"), tplSettingsOptions, &form) | ||||
| 					} | ||||
| 				case addrErr.IsInvalidPath: | ||||
| 					ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), tplSettingsOptions, &form) | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user