Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andre Robitaille
Synchronet
Commits
eaf5cb1d
Commit
eaf5cb1d
authored
4 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Don't refuse to over-write a 0-byte file in the inbound dir.
parent
d50aeb1a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/binkit.js
+1
-1
1 addition, 1 deletion
exec/binkit.js
with
1 addition
and
1 deletion
exec/binkit.js
+
1
−
1
View file @
eaf5cb1d
...
@@ -514,7 +514,7 @@ function callout_want_callback(fobj, fsize, fdate, offset, bp)
...
@@ -514,7 +514,7 @@ function callout_want_callback(fobj, fsize, fdate, offset, bp)
if
(
this
.
received_files
.
indexOf
(
fobj
.
name
)
!=
-
1
)
if
(
this
.
received_files
.
indexOf
(
fobj
.
name
)
!=
-
1
)
return
this
.
file
.
REJECT
;
return
this
.
file
.
REJECT
;
// Reject or skip existing files.
// Reject or skip existing files.
if
(
file_
exists
(
fobj
.
name
))
{
if
(
file_
size
(
fobj
.
name
)
>
0
)
{
log
(
LOG_WARNING
,
"
Inbound file already exists:
"
+
fobj
.
name
);
log
(
LOG_WARNING
,
"
Inbound file already exists:
"
+
fobj
.
name
);
// If the size and date are the same, reject it.
// If the size and date are the same, reject it.
if
(
fsize
==
file_size
(
fobj
.
name
)
&&
fdate
==
file_date
(
fobj
.
name
))
if
(
fsize
==
file_size
(
fobj
.
name
)
&&
fdate
==
file_date
(
fobj
.
name
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment