Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
trismegisto-services
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mauro Paolo Josue Zuñiga Mallqui
trismegisto-services
Commits
045818f3
Commit
045818f3
authored
Apr 16, 2024
by
Mauro Paolo Josue Zuñiga Mallqui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIXED] FILE_NAME YA NO ES REQUERIDO
parent
50041387
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
DriveService.java
...ask/trismegistoservices/services/google/DriveService.java
+1
-2
No files found.
src/main/java/web/multitask/trismegistoservices/services/google/DriveService.java
View file @
045818f3
...
...
@@ -35,8 +35,7 @@ public class DriveService implements IDriveService {
if
(
null
!=
file
)
{
File
fileMetadata
=
new
File
();
fileMetadata
.
setParents
(
Collections
.
singletonList
(
folder_id
));
assert
file_name
!=
null
;
fileMetadata
.
setName
(
file_name
.
isEmpty
()
?
file
.
getOriginalFilename
()
:
file_name
);
fileMetadata
.
setName
(
file_name
==
null
?
file
.
getOriginalFilename
()
:
file_name
);
File
uploadFile
=
googleConfig
.
getDrive
()
.
files
()
.
create
(
fileMetadata
,
new
InputStreamContent
(
...
...
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