Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
eac67ae2
Commit
eac67ae2
authored
May 18, 2020
by
Dominik Hebeler
Browse files
fixed syntax error
parent
98268677
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
routes/web.php
View file @
eac67ae2
...
...
@@ -226,8 +226,8 @@ Route::group(
$fh
=
null
;
try
{
$fh
=
fopen
(
"https://gitlab.metager.de/open-source/app-en/raw/latest/app/release/app-release.apk?inline=false"
,
"r"
);
while
(
!
feof
(
$h
andle
))
{
echo
(
fread
(
$h
andle
,
1024
));
while
(
!
feof
(
$
f
h
))
{
echo
(
fread
(
$
f
h
,
1024
));
}
}
catch
(
\
Exception
$e
){
abort
(
404
);
...
...
@@ -243,8 +243,8 @@ Route::group(
$fh
=
null
;
try
{
$fh
=
fopen
(
"https://gitlab.metager.de/open-source/metager-maps-android/raw/latest/app/release/app-release.apk?inline=false"
,
"r"
);
while
(
!
feof
(
$h
andle
))
{
echo
(
fread
(
$h
andle
,
1024
));
while
(
!
feof
(
$
f
h
))
{
echo
(
fread
(
$
f
h
,
1024
));
}
}
catch
(
\
Exception
$e
){
abort
(
404
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment