This website works better with JavaScript.
Home
Explore
Help
Sign In
closed-social
/
gitea
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Add missing safety check
for-closed-social
Martin Hartkorn
8 years ago
parent
3650bd8528
commit
15394f613f
1 changed files
with
5 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
routers/repo/setting.go
+ 5
- 0
routers/repo/setting.go
View File
@ -154,6 +154,11 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) {
}
}
}
}
if
!
repo
.
IsMirror
{
ctx
.
Error
(
404
)
return
}
repo
.
IsMirror
=
false
repo
.
IsMirror
=
false
if
_
,
err
:=
models
.
FinishMigrateRepository
(
repo
,
models
.
RepoPath
(
ctx
.
Repo
.
Owner
.
Name
,
repo
.
Name
)
)
;
err
!=
nil
{
if
_
,
err
:=
models
.
FinishMigrateRepository
(
repo
,
models
.
RepoPath
(
ctx
.
Repo
.
Owner
.
Name
,
repo
.
Name
)
)
;
err
!=
nil
{
Write
Preview
Loading…
Cancel
Save