File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed
src/main/java/io/mattw/youtube/commentsuite/fxml Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 168
168
<dependency >
169
169
<groupId >org.mockito</groupId >
170
170
<artifactId >mockito-core</artifactId >
171
- <version >4.2.0 </version >
171
+ <version >4.3.1 </version >
172
172
<scope >test</scope >
173
173
</dependency >
174
174
<dependency >
175
175
<groupId >org.mockito</groupId >
176
176
<artifactId >mockito-junit-jupiter</artifactId >
177
- <version >4.2.0 </version >
177
+ <version >4.3.1 </version >
178
178
<scope >test</scope >
179
179
</dependency >
180
180
</dependencies >
Original file line number Diff line number Diff line change @@ -219,9 +219,6 @@ public MGMVRefreshModal(final Group group) {
219
219
options .setUpdateCommentsChannels (updateIgnore .isSelected ());
220
220
options .setMaxRetryAttempts (maxRetryAttempts .getValue ());
221
221
222
- logger .debug (options );
223
- logger .debug (maxRetryAttempts .getValue ());
224
-
225
222
configData .setRefreshOptions (options );
226
223
configFile .save ();
227
224
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ public void search(
216
216
form .setDisable (true );
217
217
});
218
218
try {
219
- final String encodedText = URLEncoder . encode ( text , "UTF-8 " );
219
+ final String encodedText = text . replaceAll ( " \\ |" , "%7C " );
220
220
final String searchType = types [resultType ];
221
221
222
222
if (pageToken .equals (TOKEN_FOO )) {
You can’t perform that action at this time.
0 commit comments