Compare commits

...

2 Commits

Author SHA1 Message Date
Administrator
bc32f4dc95 release: v2.7.2 2026-04-11 07:14:57 +02:00
Administrator
7db08a6ab3 fix(clouddrop): trailing slash on /files endpoint to avoid 301 2026-04-11 07:14:30 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ class ClouddropUploader {
*/ */
async checkAuth(signal) { async checkAuth(signal) {
if (!this.apiKey) throw new Error('Clouddrop: API-Key fehlt'); if (!this.apiKey) throw new Error('Clouddrop: API-Key fehlt');
const res = await request(`${API_BASE}/files?limit=1`, { const res = await request(`${API_BASE}/files/?limit=1`, {
method: 'GET', method: 'GET',
dispatcher: clouddropAgent, dispatcher: clouddropAgent,
signal, signal,

View File

@ -1,6 +1,6 @@
{ {
"name": "multi-hoster-uploader", "name": "multi-hoster-uploader",
"version": "2.7.1", "version": "2.7.2",
"description": "Upload files to doodstream, voe, vidmoly, byse simultaneously", "description": "Upload files to doodstream, voe, vidmoly, byse simultaneously",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {