Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
140
Issues
140
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Commits
00e33392
Commit
00e33392
authored
Oct 31, 2020
by
Michael Long
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change from hardcoded 200 to http_request.status.ok
parent
d167733c
Pipeline
#446
passed with stage
in 13 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
exec/init-fidonet.js
exec/init-fidonet.js
+2
-2
No files found.
exec/init-fidonet.js
View file @
00e33392
...
...
@@ -666,7 +666,7 @@ if(network.echolist
break
;
continue
;
}
if
(
http_request
.
response_code
==
200
)
{
if
(
http_request
.
response_code
==
http_request
.
status
.
ok
)
{
print
(
"
Downloaded
"
+
echolist_url
+
"
to
"
+
system
.
ctrl_dir
+
file
.
name
);
file
.
write
(
contents
);
file
.
close
();
...
...
@@ -699,7 +699,7 @@ if(network.echolist
break
;
continue
;
}
if
(
http_request
.
response_code
==
200
)
{
if
(
http_request
.
response_code
==
http_request
.
status
.
ok
)
{
print
(
"
Downloaded
"
+
network
.
pack
+
"
to
"
+
system
.
ctrl_dir
+
file
.
name
);
file
.
write
(
contents
);
file
.
close
();
...
...
Michael Long
@phareous
mentioned in commit
cd36a63d
·
Nov 01, 2020
mentioned in commit
cd36a63d
mentioned in commit cd36a63ddb16787bfc65c9d9d29dd166153367ad
Toggle commit list
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