Skip to content

Commit f598720

Browse files
Merge pull request #125 from mattwright324/develop
Develop
2 parents bc1bdb9 + 6aab909 commit f598720

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

PRIVACY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Privacy
2+
3+
This application uses YouTube API Services
4+
5+
- http://www.google.com/policies/privacy
6+
7+
No user data is collected by this application.

TERMS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Terms of Use
2+
3+
By using this application you are agreeing to be bound by YouTube's Terms of Service
4+
5+
- https://www.youtube.com/t/terms

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,13 +168,13 @@
168168
<dependency>
169169
<groupId>org.mockito</groupId>
170170
<artifactId>mockito-core</artifactId>
171-
<version>4.2.0</version>
171+
<version>4.3.1</version>
172172
<scope>test</scope>
173173
</dependency>
174174
<dependency>
175175
<groupId>org.mockito</groupId>
176176
<artifactId>mockito-junit-jupiter</artifactId>
177-
<version>4.2.0</version>
177+
<version>4.3.1</version>
178178
<scope>test</scope>
179179
</dependency>
180180
</dependencies>

src/main/java/io/mattw/youtube/commentsuite/fxml/MGMVRefreshModal.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,6 @@ public MGMVRefreshModal(final Group group) {
219219
options.setUpdateCommentsChannels(updateIgnore.isSelected());
220220
options.setMaxRetryAttempts(maxRetryAttempts.getValue());
221221

222-
logger.debug(options);
223-
logger.debug(maxRetryAttempts.getValue());
224-
225222
configData.setRefreshOptions(options);
226223
configFile.save();
227224

src/main/java/io/mattw/youtube/commentsuite/fxml/SearchYouTube.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public void search(
216216
form.setDisable(true);
217217
});
218218
try {
219-
final String encodedText = URLEncoder.encode(text, "UTF-8");
219+
final String encodedText = text.replaceAll("\\|", "%7C");
220220
final String searchType = types[resultType];
221221

222222
if (pageToken.equals(TOKEN_FOO)) {

0 commit comments

Comments
 (0)