Skip to content
This repository has been archived by the owner on Oct 10, 2022. It is now read-only.

Commit

Permalink
Updated reference link in FTP response to failure to upload
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBerdik committed Dec 21, 2020
1 parent 80f2305 commit 0f16b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ftp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def STOR(self, cmd):
# Uploads an InfiniDrive file
# If Google's new quota rules are being enforced, deny uploading permission and return.
if time_bomb.is_quota_enforced():
self.conn.send(b'550 As of June 1, 2021, InfiniDrive no longer permits uploads. More information: https://blog.google/products/photos/storage-policy-update/\r\n')
self.conn.send(b'550 As of June 1, 2021, InfiniDrive no longer permits uploads. More information: https://github.com/DavidBerdik/InfiniDrive\r\n')
return

# Extract the name of the file to upload from the command
Expand Down

0 comments on commit 0f16b35

Please sign in to comment.