| 251 | } |
| 252 | |
| 253 | void Anime::updateEpPath(const QString &path, const QString &nPath) |
| 254 | { |
| 255 | if(!epLoaded) return; |
| 256 | for(auto &e : epInfoList) |
| 257 | { |
| 258 | if(e.localFile==path) |
| 259 | { |
| 260 | e.localFile = nPath; |
| 261 | return; |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | void Anime::removeEp(const QString &epPath) |
| 267 | { |