Skip to content

Commit

Permalink
Update to version 4.0.0(beta)
Browse files Browse the repository at this point in the history
  • Loading branch information
Udhayarajan committed May 14, 2022
1 parent 4cf7aea commit 47744ff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/src/main/java/com/mugames/vidsnap/network/Response.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
package com.mugames.vidsnap.network
/*
* This file is part of VidSnap.
*
* VidSnap is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
* VidSnap is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with VidSnap. If not, see <https://www.gnu.org/licenses/>.
*
*/

class Response {
var exception: Throwable? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ public void actionForMOREFile() {
details.videoSize = viewModel.getFormats().videoSizes.get(index);
details.videoURL = viewModel.getFormats().mainFileURLs.get(index);
viewModel.getFormats().title = removeStuffFromName(viewModel.getFormats().title);
details.fileMime = viewModel.getFormats().fileMime.get(index);

FutureTarget<Bitmap> target = Glide.with(requireContext())
.asBitmap()
Expand Down

0 comments on commit 47744ff

Please sign in to comment.