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
98268677
Commit
98268677
authored
May 18, 2020
by
Dominik Hebeler
Browse files
fixed syntax error
parent
192dba47
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
routes/web.php
View file @
98268677
...
...
@@ -225,7 +225,7 @@ Route::group(
return
response
()
->
streamDownload
(
function
()
{
$fh
=
null
;
try
{
$fh
=
fopen
(
"https://gitlab.metager.de/open-source/app-en/raw/latest/app/release/app-release.apk?inline=false"
,
"r"
)
$fh
=
fopen
(
"https://gitlab.metager.de/open-source/app-en/raw/latest/app/release/app-release.apk?inline=false"
,
"r"
)
;
while
(
!
feof
(
$handle
))
{
echo
(
fread
(
$handle
,
1024
));
}
...
...
@@ -242,7 +242,7 @@ Route::group(
return
response
()
->
streamDownload
(
function
()
{
$fh
=
null
;
try
{
$fh
=
fopen
(
"https://gitlab.metager.de/open-source/metager-maps-android/raw/latest/app/release/app-release.apk?inline=false"
,
"r"
)
$fh
=
fopen
(
"https://gitlab.metager.de/open-source/metager-maps-android/raw/latest/app/release/app-release.apk?inline=false"
,
"r"
)
;
while
(
!
feof
(
$handle
))
{
echo
(
fread
(
$handle
,
1024
));
}
...
...
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