Remove unnecessary warning

This commit is contained in:
Chocobozzz
2026-05-12 10:44:43 +02:00
parent ec8f87a072
commit 8625b42378
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -45,7 +45,7 @@
### Features ### Features
* :tada: Add ability to transfer a video channel to another user of the same instance :tada: * :tada: Add ability to transfer a video channel to another user of the same instance :tada:
* :tada: Add live DVR [#7396](https://github.com/Chocobozzz/PeerTube/pull/7396) allowing users to seek within and pause the live :tada: * :tada: Add live DVR allowing users to seek within and pause the live [#7396](https://github.com/Chocobozzz/PeerTube/pull/7396) :tada:
* :tada: Add ability to remove segments of a video in Studio :tada: * :tada: Add ability to remove segments of a video in Studio :tada:
* Support Romanian and Korean languages in web client * Support Romanian and Korean languages in web client
* Improve video ownership change UX: * Improve video ownership change UX:
+1 -3
View File
@@ -21,7 +21,7 @@ import { ActorImageModel } from '../core/models/actor/actor-image.js'
import { VideoRedundancyModel } from '../core/models/redundancy/video-redundancy.js' import { VideoRedundancyModel } from '../core/models/redundancy/video-redundancy.js'
import { ThumbnailModel } from '../core/models/video/thumbnail.js' import { ThumbnailModel } from '../core/models/video/thumbnail.js'
import { VideoModel } from '../core/models/video/video.js' import { VideoModel } from '../core/models/video/video.js'
import { askConfirmation, displayPeerTubeMustBeStoppedWarning } from './shared/common.js' import { askConfirmation } from './shared/common.js'
const program = createCommand() const program = createCommand()
.description('Remove unused local objects (video files, captions, user exports...) from object storage or file system') .description('Remove unused local objects (video files, captions, user exports...) from object storage or file system')
@@ -41,8 +41,6 @@ run()
async function run () { async function run () {
await initDatabaseModels(true) await initDatabaseModels(true)
displayPeerTubeMustBeStoppedWarning()
await new FSPruner().prune() await new FSPruner().prune()
console.log('\n') console.log('\n')